PHP practice
Private_Snoball
Dover AFB, DE, USA
I'm working on PHP, actually just started and I have a question. It says in step 1 to run my code through a server or something along those lines. Is it possible to do this? Can I just create a document and use my own PC as the server?
A quick point in the right direction is all I need. Thanks
A quick point in the right direction is all I need. Thanks
0
Comments
PHP runs as a parser that runs on a web server. So you need Apache or IIS running on your computer (acting as a web server), and the PHP installed as a module for the webserver (so that the web server knows how to properly handle .PHP documents).
So if you were to distill it into basic steps:
Step 1) Install a web server (preferably apache)
Step 2) Install PHP so that it works with your web server
Step 3) Test it, and then code away!
its a combination of apache and php that is easy to set up and test with. I use it myself.
~dodo