Thundarfoot Posted February 3, 2008 Share Posted February 3, 2008 I am displaying the results of a query in table bu using <td><?php echo $row_Recordset1['column name']; ?></td> I am only displaying the results of 1 column, and instead of a long page of single results a b c I would prefer to make the output display from left to right. a b c d is this possible and if so how? Thank you for your time and knowledge. Quote Link to comment Share on other sites More sharing options...
CerealBH Posted February 3, 2008 Share Posted February 3, 2008 it looks like your doing it correctly. all ready.. td's are left to right trs are up and down... Quote Link to comment Share on other sites More sharing options...
Stooney Posted February 4, 2008 Share Posted February 4, 2008 <table> <tr> <td><?php echo $row_Recordset1['column name']; ?></td> <td><?php echo $row_Recordset1['column name']; ?></td> etc... </tr> </table> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.