Hi Swallace
Thanks so much for all the help with this, I'm still having problems though.
I've put the following code into the page and it pulls up default.gif for every image (some of them have jpegs linked to the 'image' info and the others don't).
<?php
$size = @getimagesize("$row_rsCaroli['image']");
if(empty($size))
$image = "images/default.gif";
else
$image = "$row_rsCaroli['image']";
?>
<IMG SRC="<?php echo "$image"?>" border="1">
Do you reckon it might be past to just update the whole database and use the NULL code you posted earlier.
Would really appreciate your views on this!