Initial Commit

This commit is contained in:
Robert Fritzen 2014-06-19 13:43:37 -05:00
commit 75b8614a44
421 changed files with 36000 additions and 0 deletions

10
Univ/IsFile.php Normal file
View file

@ -0,0 +1,10 @@
<?php
$Check = $_GET["File"];
$PathToCDir = "/home/phantom7/public_html/public/Univ/".$Check."";
if(is_file($PathToCDir)) {
echo 'Exists';
}
else {
echo 'Does Not Exist';
}
?>