What's the difference between mod_php4, mod_php, and php?

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Matt Alexander
Date:  
Subject: What's the difference between mod_php4, mod_php, and php?
On Sun, 15 Sep 2002, Mark Berkwitt wrote:

> /etc/rc.d/init.d/httpd status
> httpd is stopped
> So I tried
> /etc/rc.d/init.d/httpd start
> Starting httpd:      [ OK ]         //After logging in as admin.
> YOOHOO! Now http://127.0.0.1/index.html  yields something.
> Thanks, this is so exciting. What next?



Create a file in /var/www/html called index.php and enter the following:

<? phpinfo() ?>


Then browse to http://127.0.0.1/index.php and see if it brings up your PHP
environment settings, etc.
~M