In this seventh slide, we display the table header.
1. DISPLAY TABLE HEADER:
#Table header
print "\n<h1>student data<h1>";
print "\n<table border='1'>";
print "\n<tr>";
print "<td>id<td>";
print "<td>name<td>";
print "<td>city<td>";
print "<td>state<td>";
print "\n<tr>";
2. FORM DESCRIPTION:
The first line displays the title.
The second, third and fourth lines prepare a table format
The fifth, sixth, seven and eighth lines display the table headers
The nineth line closes the table row of headers.
|