Files
zoff/php/videos.php
Nicolas A. Tonne bf75099a00 Stripe result
2014-10-10 22:04:27 +02:00

8 lines
282 B
PHP
Executable File

<?php
$list = htmlspecialchars($_REQUEST['list']);
if(!isset($_REQUEST['list']))$list="videos";
$filename = "../lists/".$list.'.json';
if(!file_exists($filename)){ $f=fopen($filename, "a+"); fwrite($f,"[]"); fclose($f);}
$file = file_get_contents($filename);
print($file);
?>