26 lines
255 B
PHP
26 lines
255 B
PHP
|
<!DOCTYPE html>
|
||
|
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
|
||
|
<title>PHP Error Output</title>
|
||
|
|
||
|
<meta http-equiv="content-type"
|
||
|
|
||
|
content="text/html; charset=utf-8"/>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<p>
|
||
|
|
||
|
<?php echo $error; ?>
|
||
|
|
||
|
</p>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|