| How do I view the php info 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); ?> |
| < Prev | Next > |
|---|