Main > Free Download Search >

Free php code software for linux

php code

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6421
PHPCoder 1.4

PHPCoder 1.4


PHPCoder is a web-based frontend to the Turck PHP Encoder, which encodes/compiles PHP script. more>>
PHPCoder is a web based front-end to the Turck MMCache encoding functions, which are similar to the Zend Encoder product.

Turck MMCache is a free open source PHP accelerator, optimizer, encoder and dynamic content cache for PHP. It increases performance of PHP scripts by caching them in compiled state, so that the overhead of compiling is almost completely eliminated.

Also it uses some optimizations to speed up execution of PHP scripts. Turck MMCache typically reduces server load and increases the speed of your PHP code by 1-10 times.

PHPCoder enables you to encode your PHP scripts and applications into non reversible byte-code, thus preventing users of your programs from viewing or alterting the source code while having full functionality.

Another excellent use for PHPCoder is to encode your applications PHP configuration files, that way someone viewing your source code does not see your databae login and password information.

In addition to encoding PHP scripts PHPCoder allows you to set restrictions on the encoded scripts, you can lock a script to a particular server IP address, server host name, visitor IP, or even place a time limit on the script so it will expire after x amount of time.

PHP Coder also allows you to specify Text, HTML or PHP code that should be prepended and appended to each file before it is encoded, allowing you to easily and securely implement your own licensing scheme.

To use your encoded scripts your clients simply install the free Turck MMCache or the Turck Loader.

<<less
Download (0.016MB)
Added: 2006-10-17 License: BSD License Price:
1104 downloads
PHP Screw 1.3

PHP Screw 1.3


PHP Screw is a PHP script encryption tool. more>>
PHP Screw is a PHP script encryption tool. When you are developing a commercial package using PHP, the script can be distributed as encrypted up until just before execution, preserving your intellectual property.

<<less
Download (0.008MB)
Added: 2005-09-19 License: BSD License Price:
1497 downloads
phpCodeGenie 3.0.2

phpCodeGenie 3.0.2


phpCodeGenie is a code writer/generator for PHP/MySQL applications. more>>
phpCodeGenie (PCG) is a code generator for database driven applications. PCG can generate entire working basic database driven applications for you. PCG can generate code from different databases.

The database servers it can talk to via ADODB are :- MySQL, PostgreSQL, Interbase, Firebird, Informix, Oracle, MS SQL, Foxpro, Access, Sybase, FrontBase, DB2, SAP DB, SQLite and Netezza. While the core version generates mostly PHP Code, phpCodeGenie can be modified to generate code in any programming language - Perl, Java, C#, ASP etc..

phpCodeGenie attempts to generate these CRUD code so that programmers have a base they can work on. The core database access code and scripts are usually the same for most applications.

Rather than spending a lot of time doing these common code, we can spend our time on the business logic of our applications and let PCG do the boring code for you. phpCodeGenie can generate simple code for beginners where everything is done in the same PHP script or structure Object Oriented PHP Code that follows the PCG framework.

phpCodeGenie requires you to design your tables and then the genie can generate code for reading and writing to the database, the html forms to enter or edit data in the database, scripts to list data, scripts to delete data, search forms, search scripts among others.

phpCodeGenie can interact and generate code from many database servers - MySQL, PostgreSQL, Interbase, Firebird, Informix, Oracle, MS SQL, Foxpro, Access, Sybase, FrontBase, DB2, SAP DB, SQLite, Netezza, LDAP, and generic ODBC, ODBTP, through the ADODB Database Abstraction Library.

phpCodeGenie uses a plugin mechanism for the different code that it generates. While most the core plugins are plugins for PHP Code Generation, one can write plugins for any language, be it Perl, Java, C#, Visual Basic, ASP etc.. Basically, code generation is String manipulation. So it is very easy to make a new PCG plugin. Feel free to write your own PCG plugins and it would be nice if you could share it back with the PCG community.
<<less
Download (1.4MB)
Added: 2005-04-22 License: GPL (GNU General Public License) Price:
1647 downloads
PHP Ticket 0.71

PHP Ticket 0.71


PHP Ticket is a PHP and MySQL based ticketing system. more>>
phpticket is a ticketing system written in PHP, backed up by a MySQL database. Its purpose is to provide helpdesks/staffs with an easy "to do" application for keeping track of what needs to be done.

The interface is kept fairly simple and easy to use. The code is licensed under GPL.
<<less
Download (0.036MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1646 downloads
PHP IDN 1.2b

PHP IDN 1.2b


PHP IDN is the PHP(4) API for the GNU LibIDN software made by Simon Josefsson. more>>
PHP IDN is the PHP(4) API for the GNU LibIDN software made by Simon Josefsson. Its intention is to have international characters in the DNS system. See more about the library at Josefsson LibIDN page.

To checkout the code, execute the following two lines after each other. As of version 0.7 (which will be released later today Jan 12, 2004), PHP-IDN can be made externaly from the PHP sources. Just check it out (or unpack the distribution tarball, see below) in a directory of your choice.

cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs login
cvs -d :pserver:anonymous@cvs.bayour.com:/var/cvs co idn

<<less
Download (0.011MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1055 downloads
PHP GEN 1.6.1

PHP GEN 1.6.1


PHP GEN reads the list of tables in a database. more>>
PHP GEN reads the tables list in a database, lets you select one, then reads the structure of it and suggests you a basic (modifiable) configuration, and than generates good-style and easy mantainable PHP code capable of listing, adding, editing and delet
Both the generated code and the engine itself use Pear::DB for database-abstraction layer and Smarty for the presentation/interface layer.
Enhancements:
- This version includes a script to perform some basic tests on your PHP GEN installation.
- Other noticeable changes include support for BBCode on textarea-field and tuning of pagination links.
<<less
Download (0.097MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1204 downloads
PHP Profiler Class

PHP Profiler Class


PHP Profiler Class is a PHP code profiler to aid in performance optimisation. more>>
This profiler is intended to be used to identify areas of code that could be optimised in order to improve overall performance of an application. Typically I identify the areas of concern in an application and place profile timers around those sections and focus down to add timers around the areas that are taking the most time and look for ways to optimise those particular areas.
The items with the highest percentage time spent are usually the ones that can give the biggest improvements.
PHP Class to perform code profiling in order to aid locating areas of code that consume most processing time.
Provides information on number of calls to a code section, percentage and total of time spent on a section. Timing of nested code sections is possible.
Main features:
- Count the number of times a section of code is executed
- Calculate the total ammount of time spent executing a section of code
- Permit multiple timers to be set
- Allow nested timers to such that the parent timers are suspended whilst a child section of code is running.
- Output a report at the end of execution to show the percentage of time spent on an operation,
- the number of times the section was run, the overall time spent on the section.
Usage:
# include_once( profiler.inc);
$prof = new Profiler( profile_flag, trace_flag );
# Profile_flag = true enables output of the statistical information
# trace_flag = true enables output of the trace information
$prof->startTimer( "timer_name", "Description" );
# timer_name is a simple string to name the timer
# description is an optional string to describe the purpose of the timer in more detail
$prof->stopTimer( "timer_name" );
$prof->printTimers( flag );
Output the final report of the processing operation being run. Normally this would be called as one of the last statements on a page.
If flag=true is set then the output will be forced even if the profile_flag was set false when the profiler was initialised
<<less
Download (0.004MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1661 downloads
PHP Active Code Library 0.10

PHP Active Code Library 0.10


PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database. more>>
PHP Active Code Library (ACL) is a PHP 5 class used to store and call PHP files that are stored in a database.

The files are stored in a plain text field and not a binary field. PHP ACL also takes care of include/require calls.

If a file includes another file stored in the database, PHP ACL takes care of getting, generating, and including that file.
<<less
Download (0.013MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1191 downloads
PHP 2 Do 0.1.0

PHP 2 Do 0.1.0


PHP 2 Do project is a simple, straightforward todo list. more>>
PHP 2 Do project is a simple, straightforward todo list.
PHP 2 Do is a simple todo list with categories, date entered, and date due.
The PHP 2 Do coding project is a simple easy to use To Do list that uses PHP and MySQL. I created this simply to keep track of the various tasks I needed to work on.
Main features:
- Add to the list with the following information:
- Listing Name
- User
- Due Date
- Category
- Discription
- View listings for one or multiple users
- Delete from the list
- Mark an entry as "Done"
- Modify a listing
- Add an entry for a specific user
- Create and asign a category for a particular listing
- View all listings marked as "Done"
- Delete entries marked as "Done"
<<less
Download (0.008MB)
Added: 2007-01-25 License: Freeware Price:
1003 downloads
Pretty Code Web 1.00

Pretty Code Web 1.00


Pretty Code Web is a syntax highlighter for publishing code, written in any programming language, to the Web. more>>
Pretty Code Web is a syntax highlighter for publishing code, written in any programming language, to the web.
Written in php it uses syntax files separate from the main code to highlight a specified language.
Main features:
- Syntax highlighting for (potentially) any language.
- User defined syntax files.
- User defined colors
- Separate colors for:
- 6 Keyword Groups
- Text Strings
- Operators
- Block and Line Comments
- Bracket Characters
<<less
Download (0.024MB)
Added: 2005-10-20 License: Free for non-commercial use Price:
1470 downloads
Webnight Commander 1

Webnight Commander 1


Webnight Commander is web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel. The whole program code is organiz more>>

Webnight Commander is web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel.
The whole program code is organized in one PHP script. All you need to do is to upload the php script on your server (set the password) and call the php file. Then you have a fully functional File manager. You can copy, move, edit files.

Requirements: apache web server with php

<<less
Download (33.70KB)
Added: 2009-04-26 License: Freeware Price: $0
184 downloads
W3C-PHP 1.1

W3C-PHP 1.1


W3C-PHP is a little php-cli script that can validate a list of URLs trough the W3C validator Web site. more>>
W3C-PHP is a little php-cli script that can validate a list of URLs trough the W3C validator Web site (http://validator.w3.org/) with PHP-DOM functions.

Configuration:

list.txt -> contain the list of url that you need to validate
the URLs must start with ":" without the "http://" prefix
for exaple...
:www.nasa.gov
:www.google.com

With the #FOLLOW# option you can validate the internal link of a site
you can active that option with:
:www.pippo.com#FOLLOW#

check.php -> php script that contain the source code
PLEASE CHECK IF YOUR PHP BIN ARE IN /usr/bin/php
IF NOT, EDIT THE FIRST LINE OF check.php
For exaple if you have installed php from Yast on Suse
probably you have the php bin in /usr/bin/php5
for execute the script you need to edit the first line of check.php
or make a link with "ln -s /usr/bin/php5 /usr/bin/php"

<<less
Download (0.010MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1204 downloads
PHP Runner 1.0.0

PHP Runner 1.0.0


PHP Runner project is a Web-based program for editing and previewing PHP files. more>>
PHP Runner project is a Web-based program for editing and previewing PHP files.
PHP Runner is a simple but useful program for easily previewing a PHP file without saving or uploading it to a server.
It has a friendly interface with useful tools such as buttons for the most frequently used PHP functions to make scripting easier and faster.
Main features:
- Runs PHP codes of your page without saving or uploading them on server.
- Helps to insert easily most used PHP functions. Very easy installation and using.
<<less
Download (0.043MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1087 downloads
Html Code Convert 3.3

Html Code Convert 3.3


Speed up the conversion of HTML code into different format more>>
HTML Code Convert helps speed up the conversion of HTML code into different format including Java Script, JavaServer Pages, Microsoft ASP, PHP, Perl, Python, and the UNIX Shell. It is particularly useful in CGI scripting.
Enhancements:
- Colors and font selected in prefeferences box.
- Fixe bug with Quit button. First try to support accessibility.
- Updated schemas.
<<less
Download (184KB)
Added: 2009-04-29 License: Freeware Price:
198 downloads
PHP Tag Engine 1.0

PHP Tag Engine 1.0


PHP Tag Engine is a library that allows you to easily add tagging functionality to a PHP application. more>>
PHP Tag Engine project is a library that allows you to easily add tagging functionality to a PHP application.
Main features:
- PHP Tag Engine has a full AJAX front-end for tagging, as well as methods for programatically adding tags in your code. The front-end tagging interface even has auto-complete functionality using the excellent Yahoo! Auto-Complete library.
- A built-in cache to reduce database queries.
- The PHP Tag Engine code is fully documented in PHP Doc format, and PHP Doc generated documentation is available for download.
- Fully internationalized including Javascript strings. English localization included.
<<less
Download (0.085MB)
Added: 2007-01-29 License: LGPL (GNU Lesser General Public License) Price:
1006 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5