file_exists()
echo '<img src="'.$image.'" width="300" height="200" />';
if( !file_exists ($image)){
echo '<img src="'. ($image).'" width="300" height="200" />';
}
if( !file_exists ($image)){
echo '<img src="'. ($image).'" width="300" height="200" />';
}
else
{
echo '<img src="notfound.jpg" width="300" height="200" />';
}
$image="gallary/".$news['path'];
$not_found_image = "image/notfound.jpg";
if( isset($image)){
echo '<img src="'. $image.'" width="300" height="200" />';
}
else {
echo '<img src="'.$not_found_image.'" width="300" height="200" />';
}
var_dump($image);