I need a PHP script that checks if a file exists in a folder, if it does not exist it checks on the next and so on ... I do not mess around with PHP so I'm a little lost.
I've tried to do with switch
too but I could not.
<?php
#checagem da existencia do arquivo em varias pastas diferentes
$imagem = foto.jpg;
$filename = "img/$imagem";
$filename_dois = "img-2/$imagem";
$filename_tres = "img-3/$imagem";
$filename_quatro = "img-4/$imagem";
$filename_cinco = "img-5/$imagem";
if (file_exists($filename)) {echo "<a href='img/$imagem' rel='shadowbox[cart]'> <img src='timthumb.php?src=img/$imagem_da_certidao&h=150&w=200' /> </a>";} else
{(file_exists($filename_dois)) {echo "<a href='img-2/$imagem' rel='shadowbox[cart]'> <img src='timthumb.php?src=img-2/$imagem&h=150&w=200' /> </a>";}}
else
{(file_exists($filename_tres)) {echo "<a href='img-3/$imagem' rel='shadowbox[cart]'> <img src='timthumb.php?src=img-3/$imagem&h=150&w=200' /> </a>";}}
else
{(file_exists($filename_quatro)) {echo "<a href='img-4/$imagem' rel='shadowbox[cart]'> <img src='timthumb.php?src=img-4/$imagem&h=150&w=200' /> </a>";}}
else
{(file_exists($filename_cinco)) {echo "<a href='img-5/$imagem' rel='shadowbox[cart]'> <img src='timthumb.php?src=img-5/$imagem&h=150&w=200' /> </a>";}}
?>