ChrisAppStatic v0.4

PHP Information Script

What it does: Calls phpinfo() to print PHP version, loaded modules, INI values, and environment. Handy for verifying extensions (e.g., cURL, GD) and troubleshooting mismatched configs.

Security note: Don’t leave phpinfo() public on production—rename or delete after use.

Inspect PHP configuration on this server.

Code

<?php
phpinfo();
?>

Open live script

Live Demo

phpinfo() loads automatically in the demo pane.

← Back to home