<?php
/**
* Example: Standalone PHP Info Display without Authentication
*
* This example shows how to use the BetterPhpInfo class to display
* a complete PHP information page without any authentication.
*
* Simply include the class file and call render() without parameters.
*/
// Include the BetterPhpInfo class
require_once 'BetterPhpInfo.php';
// Create instance and render the complete page
$betterPhpInfo = new BetterPhpInfo();
$betterPhpInfo->render();
?>
|