I didn't recognise the bit of your code that fetches records from the database, so I'm going to make a whole heap of assumptions in this answer...take from it what you will:
use CGI;
my $q = CGI->new;
my %params = $q->Vars;
my %links = ("red" => "redscript",
"black" => "blackscript");
my $dbh = DBI->connect("DBD:$database:$sid","$user","$pass")
or die "$0 connect " . DBI->errstr;
my $sql = "select detail1, detail2 detail3
from detail_table
where id = ?";
my $sth = $dbh->prepare($sql) or die "$0 prepare $sql " . $dbh->errstr
+;
$sth->execute($params{id}) or die "$0 execute $params{id} " . $dbh->er
+rstr;
print $q->header,$q->start_html,$q->start_table;
while (my @row = $sth->fetchrow_array()) {
print $q->Tr($q->td([$row[0],
$row[1],
$q->a({-href=>"/cgi-bin/$links[$row[0]].pl?id=
+$params{id}"},
"link to $row[0]")
]));
}
print $q->end_table,$q->end_html;
(this code isn't tested for obvious reasons...)
rdfield
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.