php editor
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1751
PHP feed finder 2
PHP feed finder is a PHP class that finds all the URLs for all RSS and ATOM feeds. more>>
PHP feed finder is a PHP class that finds all the URLs for all RSS and ATOM feeds that appear on a given as well as OPML outline documents from a Web page.
The project will convert any relative links that are found into absolute links. The only required input is the URL of the Web page to be scanned for links.
Enhancements:
- ATOM feed links and OPML outline documents are now retrieved by the class, in addition to RSS links.
<<lessThe project will convert any relative links that are found into absolute links. The only required input is the URL of the Web page to be scanned for links.
Enhancements:
- ATOM feed links and OPML outline documents are now retrieved by the class, in addition to RSS links.
Download (MB)
Added: 2007-07-25 License: Freeware Price:
825 downloads
php Sudoku 0.1
php Sudoku is a Web-based sudoku game that includes 200,000 sudoku puzzles. more>>
php Sudoku is a Web-based sudoku game that includes 200,000 sudoku puzzles. It can be easily used on any Web site.
The project does not require MySQL or any other database.
<<lessThe project does not require MySQL or any other database.
Download (6.8MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
938 downloads
PHP Keno Simulator 0.5-alpha
PHP Keno Simulator project is a Keno payout ruleset simulator. more>>
PHP Keno Simulator project is a Keno payout ruleset simulator.
PHP Keno Simulator is a payout ruleset simulator for the classic game Keno.
You can tune the payout chart to fulfill your "house advantage" or you can just calculate for fun (predefining the correct payouts) what the odds of winning are and how much your local casino is making for its owners.
<<lessPHP Keno Simulator is a payout ruleset simulator for the classic game Keno.
You can tune the payout chart to fulfill your "house advantage" or you can just calculate for fun (predefining the correct payouts) what the odds of winning are and how much your local casino is making for its owners.
Download (0.001MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1022 downloads
PHP FormMail 2.0
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl. more>>
PHP FormMail provides an ASP/PHP script conversion of FormMail.pl.
PHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
<<lessPHP FormMail is a PHP script conversion of the original FormMail.pl, but with many security and spam related fixes and improvements. Some customization options are removed for simplicity while keeping functionality and improving it where neccessary. An ASP version of this script is also included.
Download (0.007MB)
Added: 2007-02-21 License: Freely Distributable Price:
596 downloads
PHP TopSites 2.1
PHP TopSites provides a PHP/MySQL-based customizable TopList script. more>>
PHP TopSites provides a PHP/MySQL-based customizable TopList script.
PHP TopSites is a PHP/MySQL-based customizable TopList script. Main features include: Easy configuration config file; MySQL database backend; unlimited categories, Site rating on incoming votes; Special Rating from Webmaster; anti-cheating gateway; Random link; Lost password function; Webmaster Site-approval; Edit site; ProcessingTime display; Cookies Anti-Cheating; Site Reviews; Linux Cron Free; Frame Protection and much more.
Main features:
- Unlimited Number of Sites.
- Unlimited Number of Categories.
- Unlimited Number of Reviews for Each Site.
- Administrator Control Panel.
- Rating for Each Site.
- Stars Rating for Each Site.
<<lessPHP TopSites is a PHP/MySQL-based customizable TopList script. Main features include: Easy configuration config file; MySQL database backend; unlimited categories, Site rating on incoming votes; Special Rating from Webmaster; anti-cheating gateway; Random link; Lost password function; Webmaster Site-approval; Edit site; ProcessingTime display; Cookies Anti-Cheating; Site Reviews; Linux Cron Free; Frame Protection and much more.
Main features:
- Unlimited Number of Sites.
- Unlimited Number of Categories.
- Unlimited Number of Reviews for Each Site.
- Administrator Control Panel.
- Rating for Each Site.
- Stars Rating for Each Site.
Download (0.072MB)
Added: 2007-04-26 License: Freeware Price:
912 downloads
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
<<lessTo 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
Download (0.011MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1055 downloads
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
PHP::Session 0.26
PHP::Session is a Perl module to read / write PHP session files. more>>
PHP::Session is a Perl module to read / write PHP session files.
SYNOPSIS
use PHP::Session;
my $session = PHP::Session->new($id);
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create session file, if not existent
$session = PHP::Session->new($new_sid, { create => 1 });
PHP::Session provides a way to read / write PHP4 session files, with which you can make your Perl application session shared with PHP4.
If you like Apache::Session interface for session management, there is a glue for Apache::Session of this module, Apache::Session::PHP.
<<lessSYNOPSIS
use PHP::Session;
my $session = PHP::Session->new($id);
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create session file, if not existent
$session = PHP::Session->new($new_sid, { create => 1 });
PHP::Session provides a way to read / write PHP4 session files, with which you can make your Perl application session shared with PHP4.
If you like Apache::Session interface for session management, there is a glue for Apache::Session of this module, Apache::Session::PHP.
Download (0.015MB)
Added: 2007-04-03 License: Perl Artistic License Price:
934 downloads
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.
<<lessBoth 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.
Download (0.097MB)
Added: 2006-07-08 License: GPL (GNU General Public License) Price:
1204 downloads
PHP PSD reader 1.1
PHP PSD reader reads .PSD files (Adobe Photoshop Documents) using only PHP4 or PHP5 and GD. more>>
PHP PSD reader reads .PSD files (Adobe Photoshop Documents) using only PHP4 or PHP5 and GD. The project comes with imagecreatefrompsd (a function that returns an image handle just like the native PHP imagecreatefrom functions).
It supports documents from Adobe Photoshop 3.0 up to version CS3, where compatibility has been enabled. The class is also usefull for retrieving basic data from a Photoshop document.
You can use this script for a portfolio gallery, or to see the contents of a .psd file when Photoshop is not available.
<<lessIt supports documents from Adobe Photoshop 3.0 up to version CS3, where compatibility has been enabled. The class is also usefull for retrieving basic data from a Photoshop document.
You can use this script for a portfolio gallery, or to see the contents of a .psd file when Photoshop is not available.
Download (MB)
Added: 2007-01-12 License: GPL (GNU General Public License) Price:
1051 downloads
EmanonPHP Framework 1.0
EmanonPHP Framework is a framework developed in PHP which uses a .NET-like convention for calling classes. more>>
EmanonPHP Framework is a framework developed in PHP which uses a .NET-like convention for calling classes.
<<less Download (0.10MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
986 downloads
PHP 5.2.3
PHP is a high-level scripting language. more>>
PHP is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Its syntax draws upon C, Java, and Perl, and is easy to learn.
PHP runs on many different platforms and can be used as a standalone executable or as a module under a variety of Web servers. It has excellent support for databases, XML, LDAP, IMAP, Java, various Internet protocols, and general data manipulation, and is extensible via its powerful API.
PHP project is actively developed and supported by a talented and energetic international team. Numerous Open Source and commercial PHP-based application packages are available.
<<lessPHP runs on many different platforms and can be used as a standalone executable or as a module under a variety of Web servers. It has excellent support for databases, XML, LDAP, IMAP, Java, various Internet protocols, and general data manipulation, and is extensible via its powerful API.
PHP project is actively developed and supported by a talented and energetic international team. Numerous Open Source and commercial PHP-based application packages are available.
Download (7.0MB)
Added: 2007-06-01 License: The PHP License Price:
905 downloads
Other version of PHP
PHP Polar Tools 0.4
PHP Polar Tools is a set of PHP classes for the parsing and management of Polar Heart Rate Monitor data. more>>
PHP Polar Tools project is a set of PHP classes that can parse and manage the Polar Heart Rate Monitor data.
<<less Download (MB)
Added: 2007-04-21 License: GPL (GNU General Public License) Price:
916 downloads
PHP StatIt 4 060626
PHP StatIt keeps track of visitor counts and other visitor information. more>>
PHP StatIt keeps track of visitor counts and other visitor information such as system, browser, referral domains, screen resolution, color, etc.
PHP StatIt script features a Web-based statistics page and statistics available in three languages. Installation and configuration are simple.
<<lessPHP StatIt script features a Web-based statistics page and statistics available in three languages. Installation and configuration are simple.
Download (0.16MB)
Added: 2006-06-28 License: GPL (GNU General Public License) Price:
1218 downloads
PHP-Spacester 0.0.2
PHP-Spacester is a clone of the MySpace and Friendster social networking sites. more>>
PHP-Spacester is a clone of the MySpace and Friendster social networking sites. It strives to be dynamic.
PHP-Spacester project will also support the XDNS (Xotmid Distributed Network System), which means that all sites can be connected to hubs that are in turn connected to each other, allowing all sites to share data
PHP-Spacester started off as a fork of Astrospaces, and shows its support to their team. If you have any questions please ask on our mailing list or forums.
<<lessPHP-Spacester project will also support the XDNS (Xotmid Distributed Network System), which means that all sites can be connected to hubs that are in turn connected to each other, allowing all sites to share data
PHP-Spacester started off as a fork of Astrospaces, and shows its support to their team. If you have any questions please ask on our mailing list or forums.
Download (0.90MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1171 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above php editor search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed