Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$user_data = " <table cellpadding=\"0\" cellspacing=\"0\"> <thead> <tr> <td colspan=\"4\">User List</td> </tr> </thead>"; for (my $i = 0; $i < @$sql_data; $i++) { my $user = $sql_data->[$i]{user}; my $link = "<a href=\"goto.pl?user=$user\">$user</a>"; my $first = $sql_data->[$i]{first}; my $last = $sql_data->[$i]{last}; my $phone = $sql_data->[$i]{phone}; my $mail = $sql_data->[$i]{mail}; $user_data = "$user_data<tr><td><div>$show</div></td><td><div>$last, $ +first</div></td><td>$phone</td><td><div>$email</div></td></tr>"; } $user_data = "$user_data</table>";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: A unique question help!
by kennethk (Abbot) on Oct 14, 2009 at 17:19 UTC | |
by Anonymous Monk on Oct 14, 2009 at 17:34 UTC | |
by Anonymous Monk on Oct 14, 2009 at 17:45 UTC | |
by kennethk (Abbot) on Oct 14, 2009 at 17:54 UTC | |
by Anonymous Monk on Oct 14, 2009 at 17:41 UTC | |
|
Re: A unique question help!
by mickep76 (Beadle) on Oct 15, 2009 at 11:37 UTC |