initial commit

This commit is contained in:
2021-12-20 12:50:53 +01:00
commit 839913d51a
51 changed files with 13051 additions and 0 deletions

10
web/errors.php Normal file
View File

@ -0,0 +1,10 @@
<?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);
?>