Thank you Jason. I had this for the IF statement:
<?php if ($row_rsPROD['LEDimg1'] !== NULL) { // Show if column... ?>
<p>content</p>
<?php } // Show if column... ?>
Changed it to this:
<?php if (!empty($row_rsPROD['LEDimg1'])) { // Show if column not empty ?>
<p>content</p>
<?php } // Show if column not empty ?>
Much appreciated.
NJ
PS. Is there any way to stop the forum scrolling in the way that it does. It doesn't load all of the messages, which is understandable for a long thread, but I'd be much happier with recordset navigation as opposed to the juddery way it works just now. Just a feature request for the forum anyway. Thank you.