ChrisQuick
Programmer
We have a page that we want to use to document some of our tables. On the page we want to show the field name, field type and size in the same HTML table row (or <TR> tag). Listing the information this way works fine, but if there are more than 30 fields in the table, we want to display the information for 2 fields on the same row. Example:<br>
<br>
Field1Name, Type, Size<br>
Field2Name, Type, Size<br>
<br>
if less than 30 records.<br>
<br>
But:<br>
Field1Name, Type, Size Field31Name, Type, Size<br>
Field2Name, Type, Size Field32Name, Type, SIze<br>
Field3Name, Type, Size<br>
<br>
if there are 32 fields in the database.<br>
<br>
<br>
Does anyone know how to do this?<br>
<br>
Field1Name, Type, Size<br>
Field2Name, Type, Size<br>
<br>
if less than 30 records.<br>
<br>
But:<br>
Field1Name, Type, Size Field31Name, Type, Size<br>
Field2Name, Type, Size Field32Name, Type, SIze<br>
Field3Name, Type, Size<br>
<br>
if there are 32 fields in the database.<br>
<br>
<br>
Does anyone know how to do this?<br>