PDA

View Full Version : First PHP Application...



dewey
March 18th, 2007, 11:00 PM
Hey everyone...

So I've gotten pretty good with ActionScript and now I really wanna get into PHP as my next project...

I understand the basics of the language I guess, and I know there are some great tutorials on the site here... but the problem I am having is ridiculous, I have Apache up and running, but I have no clue how to deploy my PHP pages, or where to copy them to... can someone help me out here?

borrob
March 19th, 2007, 04:14 AM
for starters:
the apache server will process all files with the php extension in the DocumentRoot directorie.
this is defined in the file
httpd.conf in
yourinstalldir/apache/conf
if you change this directorie entry be sure to change <Directory .....> also in the same file.
create a file test.php and in this call for example phpinfo(); to see if apache is
working correctly.

have fun.....
now try : htttp://localhost/test.php in your browser