dr.zick Posted June 22, 2006 Share Posted June 22, 2006 ok this should be easy but i'm having some trouble ... i'm taking the results of a query (4 record) and i want to split the results into a table row (tr) with 3 cells (td) and after the 3rd cell start a new row. so seeing as there is 4 records that means one full row with 1 record in a second row. however my script keeps putting all the records in the same row. i'm not sure how to fix this. here's my code:[code]echo "<tr height=\"128\">\n";while ($row=mysql_fetch_array($result)){for ($i=1; $i<3; $i++){echo "<td width=\"33%\" valign=\"bottom\">", $row['name'], "</td>\n";}}echo "</tr>";[/code]see it in action at: [a href=\"http://about:blank\" target=\"_blank\"]here[/a]any help would be awesomely appreciated. Link to comment https://forums.phpfreaks.com/topic/12604-need-help-with-results-of-db-query/ Share on other sites More sharing options...
trq Posted June 22, 2006 Share Posted June 22, 2006 There is a snippet in the [a href=\"http://www.phpfreaks.com/forums/index.php?showforum=41\" target=\"_blank\"]FAQ/CODE Snippet Repository[/a]. Link to comment https://forums.phpfreaks.com/topic/12604-need-help-with-results-of-db-query/#findComment-48333 Share on other sites More sharing options...
dr.zick Posted June 22, 2006 Author Share Posted June 22, 2006 i'm stupid ... Link to comment https://forums.phpfreaks.com/topic/12604-need-help-with-results-of-db-query/#findComment-48341 Share on other sites More sharing options...
trq Posted June 22, 2006 Share Posted June 22, 2006 Sorry. Link to comment https://forums.phpfreaks.com/topic/12604-need-help-with-results-of-db-query/#findComment-48342 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.