My host has php installed, but I don't think correctly. I am running the following code in a file named phpinfo.php:
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
I am getting:
phpinfo.php: parse error, expecting `'('' on line 3
// Show all information, defaults to INFO_ALL
Is this a misconfiguration of some kind?
Any help appreciated.
Thanks
JOe