By taking out all the closing </tr>'s except the last one your table would be set up in a row (horizontal as opposed to vertical).
Are you creating many tables that are vertical and you want these vertical tables to stand next to each other? As in many vertical tables in a horizontal row?
If so I would place a table inside a table
<table><tr><td><table> vertical row one info </td></tr></td></table></td>
<td><table><tr><td> vertical table to the right of vertical table 1 information </td></tr></table></td> <td><table><tr><td>vertical table 3 next to vertical table 2 information</td></tr></table>
(then close out the main table)</td></tr></table>
let me know if this helps.