Knowledgebase

How can I see the PHP info for my account?

To see all information about the PHP version on your account, you need to use the phpinfo() function. Simply create a new php file (the name doesn't matter, as long as the file extension is php, e.g. info.php) inside your public_html folder. Then add the following code in it:

<?php phpinfo(); ?>


Save the changes and access the file through a browser, e.g.:


http://www.yoursite.com/info.php

Was this answer helpful?

 Print this Article

Also Read