🎉 Hello world

This commit is contained in:
2019-09-02 16:37:11 +02:00
commit 2d66ff27e2
15 changed files with 10917 additions and 0 deletions

6
load.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
if(empty($_POST['hash'])) exit;
$hash = substr($_POST['hash'],1);
if (is_readable('saved/'.$hash)) {
echo file_get_contents('saved/'.$hash);
}