mirror of
https://github.com/PhantomGamesDevelopment/PGD-Connect--Tribes-2-.git
synced 2026-01-19 19:44:46 +00:00
10 lines
205 B
PHP
10 lines
205 B
PHP
<?php
|
|
$Check = $_GET["File"];
|
|
$PathToCDir = "/home/phantom7/public_html/public/Univ/".$Check."";
|
|
if(is_file($PathToCDir)) {
|
|
echo 'Exists';
|
|
}
|
|
else {
|
|
echo 'Does Not Exist';
|
|
}
|
|
?>
|