mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
8 lines
282 B
PHP
Executable File
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);
|
|
?>
|