Files
zoff/videos.php
Nicolas A. Tonne 6d3f725a58 ALL THE NEW CODES
2014-09-01 14:04:00 +02:00

8 lines
272 B
PHP

<?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);
?>