Issue
Unsure on how to retrieve the PHP information of your hosting account
Symptoms
None
Cause
Not sure on where to get the information from.
Workaround
How to create a phpinfo page.
Step 1: Open up a text editor preferably Notepad.
Step 2: Copy/paste the following line of code:
<?
phpinfo();
?>
Step 3: Save the file as phpinfo.php.
Step 4: Upload the phpinfo.php file to your account under the public_html / wwwroot directory.
Step 5: Point your browser to http://www.yourdomain.com/phpinfo.php
Note: Please replace yourdomain.com with your actual domain name
With this page, you can find all the PHP parameters setup for your account, including your PHP version and also the details of the modules installed in the server for your further reference & usage.
Additional Information
PHP: Hypertext Preprocessor is a widely used, general-purpose open source scripting language that was originally designed for web development to produce dynamic web pages.
PHP is a scripting language that is especially suited for web development and can be embedded into HTML. It generally runs on a web server, taking PHP code as its input and creating web pages as output. It can be deployed on most web servers and on almost every operating system and platform free of charge.