I need to check if a file exist but the system cannot find the file, it may be because the code is ending the $var with .php I dont know. Here is the code
$thefile=$_POST['files'];
if (file_exists('/infrastructure/datacenter/'.$thefile.'.php'))
{include('infrastructure/datacenter/'.$thefile.'.php');}
Any idea why the file cannot be found? Because the file really exist
the file name in the test is 2001.php and it does exist but php says it does not exist
SOLVED
There was a missing / in the include second path