Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

PHP:Como exibir uma imagem padrão se a especificada não existir?


Existem diversas formas de fazer isto.
<?php

if(file_exists("images/artists/$artist_name.jpg"))
    $fileName = "$artist_name.jpg";
else
    $fileName = "default.jpg";
?>

<div class="artimg"><img src="images/artists/<?php echo $fileName;?>"  height="50px" width="50px"/></div>