$add="images/119.jpg";
if(file_exists($add)){
echo "Yes file is there ";
}else{
echo "Sorry no file at $add ";
}
In our script before executing a program we need to check if file exists or not. This file check method by using file_exists function check the presence of file from relative path we specify and then returns TRUE of False based on the presence of the file.
Anand | 17-08-2010 |
It helps me 2 much. Thanks |