DBI/PERL Tutorial over the Web

Click to go to the PREVIOUS page. Click to go to the INDEX page. Click to go to the NEXT page.

SLIDE #7 DISPLAY TABLE HEADER


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.


© Copyright 2002 International Customized Software Co.