Many times, you will need to change PHP values through a php.ini file, and are unsure if the changes that were made took effect. We will show you how to create a simple phpinfo.php file to confirm the changes that were made.
First, we need to create a blank PHP file (it can be named anything you wish). Once that is done, we want to edit that file and enter in the following code below.
<?php
// Display all PHP information, defaults to INFO_ALL
phpinfo();
?>
Once you have entered in the information in the PHP file, save it, and close it.
To view the PHP configuration information, you will want to go to yourwebsitename.com/phpinfo.php
***Please note that the URL will be different depending on what you called your file, and the directory where it is located***