How do I create a phpinfo page?
Calling phpinfo is useful to give you a lot of information about your php server setup. It is very simple to do as well.
On your desktop, open a new text file with notepad or similar.
Copy and paste this:
<?php phpinfo(); ?>
Save the file as phpinfo.php (or anything else as long as the extention is .php).
Upload the file to your site at the root level and then call it via your browser eg. www.mysite.com/phpinfo.php
Calling phpinfo is useful to give you a lot of information about your php server setup. It is very simple to do as well.
On your desktop, open a new text file with notepad or similar.
Copy and paste this:




