i have a search results page and i want it to show images from all my pages. so i have added three echos from database
but on some page i only have one image. so on my search results page it shows the firs image but 2 other blank image spots with a image unidentified symbol. is there a code to hide the image blocks if there is no image in them???
Code:
<p><img src="images/<?php echo $rsResult['Pic']; ?>" width="250px" height="188px" <img src="images/<?php echo $rsResult['pictwo']; ?>" width="250px" height="188px" <img src="images/<?php echo $rsResult['picthree']; ?>" width="250px" height="188px"</p>
Comment