This commit is contained in:
2020-11-13 05:08:21 +01:00
parent df2bfa1333
commit bda833f6e3
4 changed files with 46 additions and 46 deletions

8
index.php Normal file
View File

@ -0,0 +1,8 @@
<?php
require("classes.php");
$grid = new Grid();
$grid->generate();
header("Location: " . $_SERVER["REQUEST_SCHEME"] . "://" . $_SERVER["HTTP_HOST"] . dirname($_SERVER["DOCUMENT_URI"]) . "/" . $grid->toString());
exit();
?>