You are here: Portal Home > Knowledgebase > Supported Features | Versions > PHP > How do I view the php information page?
How do I view the php information page?
| Create a page name phpinfo.php and insert the below code into it. Pull
this page up in your browser and this will show the php configuration
on the server. <?php // Show all information, defaults to INFO_ALL phpinfo(); // Show just the module information. // phpinfo(8) yields identical results. //phpinfo(INFO_MODULES); ?> |
Also Read

