|
Q:
How can I get details about the PHP configuration, version and all other PHP settings on my server?
In order to get information about PHP configuration and settings follow the following steps:
1. Create a new page named pageinfo.php 2. Copy and paste the following code in the newly created page.
<?php PHPINFO(); ?>
3. Upload your page in the web directory. 4. Browse to this newly uploaded page through your web address.
The page should display all the information regarding PHP environment and settings on your server.
|
|