Initial commit

This commit is contained in:
2022-09-28 14:44:49 +02:00
commit e46b8baa77
59 changed files with 60320 additions and 0 deletions

7
short_links.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
@unlink(__DIR__.'short_links.db');
$db = new PDO("sqlite:".__DIR__."/short_links.db");
$db->exec(
"CREATE TABLE links(id VARCHAR PRIMARY KEY, `courses` VARCHAR)"
);