PDA

Click to See Complete Forum and Search --> : [RESOLVED]what tools are required to run php program


rasana
Mar 9th, 2007, 11:59 PM
Hi All,

I want to know what tools r required to install in pc to run php program?
is there any spl. editor to write php program?
which server i need to install.

kows
Mar 10th, 2007, 12:59 AM
you don't really need anything installed to run php. you can run it standalone if you just plan to do system stuff and don't plan to serve pages to anyone -- although, i highly doubt you'd do php to do that. so, basically, you just need a web server to serve the pages. you can use just about any web server. i recommend apache httpd (http://httpd.apache.org).

you don't need any type of editor for php. a php file is just a text file. you can use notepad or wordpad to edit it if you like -- that's what i use. a lot of people like editors that have syntax highlighting and things like that, though.

penagate
Mar 10th, 2007, 10:52 AM
Any web server that supports CGI/FastCGI or SAPI.

PHP (like many *nix-based programs) doesn't need to be installed per se; all you have to do is copy the files. If you're using Windows, I recommend the zip distribution.

rasana
Mar 11th, 2007, 11:43 PM
you don't really need anything installed to run php. you can run it standalone if you just plan to do system stuff and don't plan to serve pages to anyone -- although, i highly doubt you'd do php to do that. so, basically, you just need a web server to serve the pages. you can use just about any web server. i recommend apache httpd (http://httpd.apache.org).

you don't need any type of editor for php. a php file is just a text file. you can use notepad or wordpad to edit it if you like -- that's what i use. a lot of people like editors that have syntax highlighting and things like that, though.

Thank you very much :)

rasana
Mar 11th, 2007, 11:44 PM
Any web server that supports CGI/FastCGI or SAPI.

PHP (like many *nix-based programs) doesn't need to be installed per se; all you have to do is copy the files. If you're using Windows, I recommend the zip distribution.

Thanks for d reply :)

superbovine
Mar 12th, 2007, 07:12 AM
if you google for install php <insert OS here> you can probably get a nice walk through for everything.