How to check PHP settings of your account
in Web Hosting

Sometimes you need to check and see what are your php settings of your web hosting. You can create a php page using the phpinfo() function to see detailed information about the PHP settings of your hosting. Create a page named phpinfo.php and copy paste below code.
<?php
phpinfo();
?>
Now upload phpinfo.php to public_html folder
Now you can see php setting of your web hosting by simply visiting:
www. yoursite.com/phpinfo.php
Relace yoursite.com by your website url in above url.
- Login to post comments
