HTML table 'rows' wrapping instead of scrolling.....
- Posted by John F Dutcher <John_Dutcher at urmc.rochester.edu> Aug 03, 2004
- 510 views
Here is CGI script code that produces the start of a table (the headings) (still more headings to come, but already it wraps instead of scrolling):
puts(1, "Content-type: text/HTML\n\n" & "<html><head>\n" & "<title>Blues Remits Splitter</title>\n" & "<body text=blue>\n" & "<center>\n" & "<H1>Blues Remittances for 7/28/04</H1>\n" & "<TABLE BORDER=1 BGCOLOR=pink>\n" & "<tr><td>Received Date</td>\n" & "<td>Provider</td>\n" & "<td>Svc Year</td>\n" & "<td>Account #</td>\n" & "<td>Last Name</td>\n" & "<td>First Name</td>\n" & "<td>Mid Init</td>\n" & "<td>Sub Last Name</td>\n" & "<td>Sub First Name</td>\n" & "<td>Sub Mid Init</td>\n" & "<td>Date of Birth</td>\n" & "<td>HIC Number</td>\n" & "<td>Location</td>\n" & "<td>Fin Class</td>\n" & "</tr></table>\n"
Here is the 'source' sent to the browser after the CGI has run as seen in the browser menu 'view' - 'source' options with I.E. 6.0: <html><head> <title>Blues Remits Splitter</title> <body text=blue> <center> <H1>Blues Remittances for 7/28/04</H1> <TABLE BORDER=1 BGCOLOR=pink> <tr><td>Received Date</td> <td>Provider</td> <td>Svc Year</td> <td>Account #</td> <td>Last Name</td> <td>First Name</td> <td>Mid Init</td> <td>Sub Last Name</td> <td>Sub First Name</td> <td>Sub Mid Init</td> <td>Date of Birth</td> <td>HIC Number</td> <td>Location</td> <td>Fin Class</td> </tr></table>