what php version?

antanet

New member
Joined
Sep 21, 2004
Messages
3
Hello. Please Help!

I am evaluating a PHP directory program/script that requires PHP version 4.1.2 +.

What version is running on my Direct Admin hosting account?

It shows that I have MySQL 4.0.16 which is a high enough version but I cannot see what the version of PHP is running on the system.

Thanks
Tony:confused:
 
You can find out what version of php you're running, and a lot of other php information besides, by installiing the following three-line php program:
Code:
<?php
phpinfo();
?>

Call it phpinfo.php.

Then run it through your browser, for example:

http://www.example.com/phpinfo.php

It will give you a lot of information.

Jeff
 
Thanks Jeff that was fantastic... it worked first time and I now have all the information I needed, thanks.
 
Back
Top