Found this:
"
ls -l /etc/httpd/modules/php
This should return
-rwxr-xr-x 1 root root 1411541 Sep 3 05:26 /etc/httpd/modules/libphp4.so
libphp4.so is the compiled php module for Apache. So the module is there, but Apache can't see it. Now you just need to tell Apache
Where it is, and
How to recognize php files.
You do that by adding two lines to /etc/httpd/conf/httpd.conf (you'll have to be root)
LoadModule php4_module modules/libphp4.so
Place this right after the last
LoadModule line in the file. This tells Apache, of course, to load Php.
Then, add this line:
AddType application/x-httpd-php .php
This tells Apache to hand files that end in .php to the Php interpreter.
Then, stick your files (say, myfile.php) in /var/www/html, and load them up at localhost/myfile.php.
"
Not responsible for info, just something I found.
Also, edit httpd.conf, find the line with index pages and add index.php.
NEXT?!?