I'm trying to print some data in tables by Using the below code(not entire code) but It's giving error. If I remove the table then I'm able to print the output.Can anybody help me with this
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";