Get rid of a redundant directory level.

This commit is contained in:
2016-08-20 22:31:29 +02:00
parent abb6ae9ba0
commit b2256b2454
556 changed files with 0 additions and 0 deletions

7
projects/view.php Normal file
View File

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