in reply to Images, in links, in tables..... utter choas

wiz, unless you have a start_a and end_a function defined somewhere (I don't see them in my CGI.pm), I think that is where your problem lies.

Try changing your

start_a({-href=>"/images/screenres/$record[5]"}),img({-src=>"/images/thumbnails/$record[4]"}), end_a()

to something like this (broken up for clarity):

a({-href=>"/images/screenres/$record[5]"}, img({-src=>"/images/thumbnails/$record[4]"}) )

I think that may help.

D a d d i o