I have a mysql table column called 'imagecolumn' The rows contain links i.e.
image.gif image.gif null image.gif image.gif To display in my web page im using: <img src="<?php echo $row_Recordset1['imagecolumn']; ?>"> This displays the above images in my html page The problem i have is where the field in my table is left blank (null), a web browser shows this as a broken image link icon. i.e. it doesn't ignore it. Does anyone know how I can get my page to ignore it if there is no link.