Niels G. W. Serup ffcf9fefd5 Rename directory to better suit the moving time.
Kind of also fix the apache conf, but not quite.
2016-08-20 22:39:56 +02:00

8 lines
145 B
PHP

<?php
header('content-type: text/plain; charset=utf-8');
$fn = $_GET['src'];
$f = fopen($fn, 'r');
echo fread($f, filesize($fn));
fclose($f);
?>