Fatal error: Call to undefined function: php_info() in /home/*/public_html/info.php on line 2
Source code:
<?php
php_info();
?>
Error message:
Fatal error: Call to undefined function: php_info() in /home/tim/public_html/test.php on line 2
Answer: Because it’s phpinfo(); and not php_info();
Leave a comment