Gossamer Forum
Home : Products : DBMan : Installation :

sub html_record image display

Quote Reply
sub html_record image display
Autogenerate is off

In sub html_record I have the lines

<TR><TD ALIGN="Right" VALIGN="TOP"><$font_color>Photo:</FONT></TD>

<TD> <IMG SCR="$rec{'Photo'}"></TD></TR>

Why does the image not display?
Quote Reply
Re: sub html_record image display In reply to
This may just be a typo in your post, but
<IMG SCR="$rec{'Photo'}">
should be
<IMG SRC="$rec{'Photo'}">

** note src instead of scr

Quote Reply
Re: sub html_record image display In reply to
Thank you, Thank you, Thank you.

Something so simple!!!

------------------