I have managed to succesfully output the images from my database. What I now want to do is check if anything exists in the field. If it does I want it to display the picture, if nothing exists in the field I would like to show a default picture. I am currently checking if anything is in the field using the following code, but I cannot get my head around how I can do it to show a default picture if nothing exists.
<? if ($photograph_one){ ?>
<img src="image1.gif ?>" width=260 height=195>
<? } ?>
Thank you
Adrian