HostGator Web Hosting Help

PHP information page

Summary

In the phpinfo.php page you can see the PHP version at the top of the file, and you can find the current version of MySQL.

You can also use phpinfo to check php settings like safe_mode and register_globals.

How to Create a PHP Info File

Create a file named 'phpinfo.php' in the public_html folder of your site and insert the one of the following selections of code:

If you want to show all the information about PHP, then use the following code:

<?php
phpinfo(); // This would be used to display all of the PHP information available for the installation.
?>

If you would like to just see the installed modules and their current values, use the following code:

<?php
phpinfo(INFO_MODULES); // This would be used to display the installed modules and their current values.
?>

If you would like to display the configurations you have setup through your php.ini or to review what's setup through the default configurations, then use the following code:

<?php
phpinfo(INFO_CONFIGURATION); // This would be used to display the configurations you have setup through your php.ini or to review what's setup through the default configurations.
?>

Next, go to your browser and type:

http://example.com/phpinfo.php

Please replace "example.com" with your actual domain.



Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

If suddenly when you go to your page, you get nothing on the page. You can still get HTML to display, just not PHP. To serve HTML pages to browsers, we don't associate the Apache processes with your 2
Knowledgebase Article 183,632 views tags: blank page php

How do I redirect users to another page using PHP?
Knowledgebase Article 918,478 views tags: header location php redirect redirects

This article will show how to view which PECL packages are alredy installed, as well as show you how to install additional package.
Knowledgebase Article 180,929 views tags: package pear php

Related Help Content

To view your stats, scroll down to the Logs section of the cPanel Here are different programs that can be used to view your stats. We most recommend awstats When you select your stats program, you ma
Getting Started Article 518,815 views tags: awstats domain select stats view

How can I adjust the php settings specifically for an Addon Domain?
Knowledgebase Article 319,233 views tags: domain php

This article will explain how to add a PHP handler to your .htaccess files. This is useful if you want to customize the version of PHP that runs your PHP files.
Knowledgebase Article 388,455 views tags: htaccess php

How do I change the PHP environment for my site with php.ini?
Knowledgebase Article 796,334 views tags: configuration ini php server

In the newer versions of PHP, they have included a new directive to control and handle remote includes. We disable this option, by default, which may affect some of your PHP scripts.
Knowledgebase Article 172,858 views tags: include php remote url

Many popular website platforms use PHP for rendering their content. It’s common for these sites to have automatic update tools to ensure that they work with the latest version of PHP, however sometimes a theme or plugin for these services may prevent them from updating or may not work with a newer
Knowledgebase Article 141,016 views tags: deprecation discontinue end php upgrade

This article will outline which PHP PEAR Packages are installed and how you can install additional PHP PEAR Packages.
Knowledgebase Article 183,117 views tags: package pear php

How do I turn the display_errors flag on for php?
Knowledgebase Article 222,398 views tags: display errors php