mots/load.php

6 lines
149 B
PHP
Raw Permalink Normal View History

2019-09-02 16:37:11 +02:00
<?php
if(empty($_POST['hash'])) exit;
$hash = substr($_POST['hash'],1);
if (is_readable('saved/'.$hash)) {
echo file_get_contents('saved/'.$hash);
}