D
dan
I want to create a table with Perl CGI that looks like this:
<table>
<tr>
<th>Row heading</th>
<td>test1</td>
<td>test2</td>
</tr>
</table>
The following creates a table with two rows
table (
Tr ([
th ('row heading'),
td (['test', 'test2'])
])
),
what am I doing wrong?
dan
<table>
<tr>
<th>Row heading</th>
<td>test1</td>
<td>test2</td>
</tr>
</table>
The following creates a table with two rows
table (
Tr ([
th ('row heading'),
td (['test', 'test2'])
])
),
what am I doing wrong?
dan