konyvleltar/web/errors.php

11 lines
231 B
PHP
Raw Permalink Normal View History

2021-12-20 12:50:53 +01:00
<?php
include ('template.inc');
ob_start();
$l = file_get_contents("../data/isbn-error.txt");
print "<pre>";
print_r($l);
print "</pre>";
$output = ob_get_clean();
Template::render( $output);
?>