我试图动态生成一个表,该表每行都有一个单选按钮,其值设置为 SQL 表的 ID 字段。我不确定如何使用 CGI radio_group 引用这个值。在我的研究中,radio_group 使用关联数组,但是如果我将 SQL 查询转换为关联数组,则值将不匹配,因为查询中有超过 2 个表。如果可能的话,我想避免第二次 SQL 调用:
use CGI;
use DateTime::Format::MySQL;
$epoch = DateTime->now(time_zone=>"America/New_York");
$fmtnow = DateTime::Format::MySQL->format_datetime($epoch);
$iasql = qq { select * from alert where endtime > '$fmtnow'};
$iaqry = $iadb->prepare($iasql);
$iaqry->execute() || die "Fail $DBI::errstr"
print $query->start_table({-border=>1, -cellpadding =>1});
while(@iarows = $iaqry->fetchrow_array()) {
print $query->Tr(print $query->td([print $query->radio_group('iaselect',\@iarows[0]),'@iarows[1]','@iarows[2]','@iarows[3]','@iarows[4]','@iarows[5]']));
}
print $query->end_table();