Hello,
im having a problem with php's file_exists and is_file, it seems to be passing if a file was not specified, i looked into the official php documentation to find file_exist and is_file can also check i directory exists but i dont want this i just want to check if the file exists, any ideas?
<?php
if (file_exists($filepath) == true){
die('File exists');
} else {
die('File doesn't exist');
?>
Best Wishes,
Nathaniel Blackburn