7 lines
104 B
PHP
7 lines
104 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', 1);
|
|
|
|
echo "<h1>PHP Status: OK</h1>";
|
|
phpinfo();
|