Gossamer Forum
Home : Products : DBMan : Customization :

2 records in one field

Quote Reply
2 records in one field
How do you display 2 records in one field
here is the line in html.pl
<a HREF="$rec{'URL'}Download</a></td>
but I would like it to be like
<a HREF="$rec{'URL'}$rec{'ID'}get</a></td>

but as I found out it is not like that. Can some one tell me how to do it.
Thanks.
Quote Reply
Re: 2 records in one field In reply to
Try

<a HREF="$rec{'URL'}$rec{'ID'}">get</a></td>

or maybe

<a HREF="$rec{'URL'}">$rec{'ID'}get</a></td>

depending on what you want to do.


------------------
JPD