|
Written by Administrator
|
|
Thursday, 15 February 2007 17:44 |
PHP development software (IDE) My recommendation would be:
dev-PHP: http://devphp.sourceforge.net/
download and install the following two files: the actual software: http://prdownloads.sourceforge.net/devphp/devphp194.exe
a version of PHP set up to work only with DEVPHP: http://prdownloads.sourceforge.net/devphp/phpsetup3.exe
After you've installed both, run dev-PHP. When I post code snippets, you can copy those snippets directly into dev-PHP. For example, from lesson 2:
<html> <head> <title></title> </head> <body>
<? print 'php code here'; ?>
</body> </html>
when you've copied the snippet into dev-php, press F9, and you can see the output. This saves you time from saving the file into your "www" directory, running easyphp then doing it from your browser .
Plus, it's just a good piece of software to develop PHP in 
|