When I use to following PHP code;
<?php if (file_exists("/foto/Maurice.jpg"))
{
echo "<center><img src='/foto/Maurice.jpg'/></center>";
}
else {
echo "<center><img src='/afbeeldingen/kaars1.png'/></center>";
?>
My browser always shows kaars1.png
instead of Maurice.jpg
I also tried !file_exists
but then it doesn't show kaars1.png
, when Maurice.jpg
doesn't exist.
Is there a simpel way to fix this?