When I try to run
Code:
<?php
echo apache_getenv('PATH');
?>
I get
Fatal error: Call to undefined function: apache_getenv()
Any ideas why this would happen?
PHP 4.3.10-2
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
echo apache_getenv('PATH');
?>
I get
Fatal error: Call to undefined function: apache_getenv()
<?php
echo "apache_getenv('PATH')";
?>