How to know that PHP is there on the server?
Create a page, and upload it on the server, with the following content:
<?php
phpinfo();
?>
Give the .php extension to the page.
The code causes information about our PHP installation to be output to the browser. The phpinfo() function is very useful for debugging scripts because of the contextual information it provides.
Leave a Reply
You must be logged in to post a comment.