使用CGI在html中创建动态表

时间:2010-12-15 16:01:01

标签: html dynamic html-table cgi

我正在尝试使用下面的代码(而不是整个代码)在表格中打印一些数据,但是它给出了错误。 如果我删除表,那么我就能打印输出。有人可以帮我吗?

print "<table border="1">\n";
while(my $ref = $sth->fetchrow_hashref()) {
print "<tr>\n";
print "<td>\n ";
print "$ref->{'name'} owns $ref->{'telno'}\n";
print "</td>\n";
print "</tr>\n";
}
print "</table>\n";

1 个答案:

答案 0 :(得分:2)

print "<table border="1">\n";

你不需要逃避那些内在的双引号吗?