PGD-Connect--Tribes-2-/Univ/IsFile.php

10 lines
205 B
PHP
Raw Permalink Normal View History

2014-06-19 18:43:37 +00:00
<?php
$Check = $_GET["File"];
$PathToCDir = "/home/phantom7/public_html/public/Univ/".$Check."";
if(is_file($PathToCDir)) {
echo 'Exists';
}
else {
echo 'Does Not Exist';
}
?>