First off, I Need to know how to allow how to allow duplicates in a field.
Rotating a table.
I am trying to rotate a table so that when i display it via php, the fields heads are all on the frist column, and the information distriubtes horizontally
Dont make any uniqeu fields.
Ok let me give you another ideea to rotate you database fields (to echo your table rotated). If you know your number of your field use a for statement like this:
for($i=0;$i<count($fiels);$i++) { $query=mysql_query('SELECT field FROM $table'); echo "<TR>"; while($rez=mysql_fetch_assoc($query)) { echo "<td>".$rez['field']."</td>"; } echo "</TR>"; }