tomtimms Posted June 28, 2010 Share Posted June 28, 2010 I am trying to do multiple while loops within a table. I am able to display a while loop within a while loop, however I need a 3rd while loop to display more data. I pretty much need my table to display like the following. Date : Column 1 : Column 2 : Column 3 06/01/2010 : Data : Data : Data (while loop 1) Hour : Data : Data : Data: (while loop 2) Company : Data : Data: Data (while loop 3) I have a javascript function written that when you click the date (06/01/2010) it will toggle the hour, then when you click the hour it will show the company. My main problem is that I can get a 3rd loop in there to display the company data under the hour correctly. Anyone know if it's possible to display data like this in multiple loops? Code So far $sql $result <table cellpadding=0 cellspacing=0 border=0 id='reports_table'> <thead> <tr> <th scope='col'>Date</th> <th scope='col'>Data 1</th> <th scope='col'>Data 2</th> <th scope='col'>Data 3</th> </tr></thead>"; while ()) { ?> <tbody> Show Date break down </tr> </tbody> <tbody> <?PHP $sql $result while ()) { Show hour break down } ?> </tbody> <?PHP } ?> </table> Link to comment https://forums.phpfreaks.com/topic/206085-while-loop-for-table-rows/ Share on other sites More sharing options...
Mchl Posted June 28, 2010 Share Posted June 28, 2010 Yes it is possible, although the code you pasted is full of errors. Link to comment https://forums.phpfreaks.com/topic/206085-while-loop-for-table-rows/#findComment-1078302 Share on other sites More sharing options...
tomtimms Posted June 28, 2010 Author Share Posted June 28, 2010 I just posted general break down of how I have it. Link to comment https://forums.phpfreaks.com/topic/206085-while-loop-for-table-rows/#findComment-1078303 Share on other sites More sharing options...
tomtimms Posted June 28, 2010 Author Share Posted June 28, 2010 Nevermind I was able to get it to work. Link to comment https://forums.phpfreaks.com/topic/206085-while-loop-for-table-rows/#findComment-1078308 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.