unsider Posted August 3, 2008 Share Posted August 3, 2008 Alright I'll get right to it, as the solution is probably simple. I have my content being displayed in the below form after it's retrieved from the database. |1|2|3|4| |5|6|7|8| |9|10|11|12| |etc..| But I'm using a while loop to retrieve the information, but every four outputs, I need to create a new </tr><tr> like in the example above. As opposed to allowing it to loop |1|2|3|4|5|6|7|8|etc... I hope this makes sense..and if so can you explain what this is or how to accomplish it? Thanks. Link to comment https://forums.phpfreaks.com/topic/117962-solved-how-is-this-done/ Share on other sites More sharing options...
cooldude832 Posted August 3, 2008 Share Posted August 3, 2008 using modular returns <?php #assume query built and ran $i = 0; echo "<tr>"; while($row = myslfetch){ if($i%4 == 0 && $i >0){ echo "</tr><tr>"; } #output td $i++; } echo "</tr>"; ?> Link to comment https://forums.phpfreaks.com/topic/117962-solved-how-is-this-done/#findComment-606809 Share on other sites More sharing options...
unsider Posted August 3, 2008 Author Share Posted August 3, 2008 Thank you very much. Knew it had a fancy little name Link to comment https://forums.phpfreaks.com/topic/117962-solved-how-is-this-done/#findComment-606812 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.