brown2005 Posted March 23, 2006 Share Posted March 23, 2006 Hi,I have an a to z list that takes the field topics_topic and prints an a to z list like:-EelephantsLlionslymasthat is fine but what i wanna do is instead of havinglionslymaslike thati want it likelions lymasin a table..any ideas please? Quote Link to comment Share on other sites More sharing options...
obsidian Posted March 23, 2006 Share Posted March 23, 2006 well, creating dynamic tables can be pretty complicated, but not exessively so. you need to determine how many columns you want to display before the table goes on to the next row. once you've done that, you're really pretty much set to go with something like this:[code]// assuming you already have your SQL results in variable $results$columns = 5; // number of cells before we start next row$count = 0;echo "<table>\n";while ($row = mysql_fetch_array($results)) { if ($count % $columns == 0) echo "<tr>\n"; echo "<td>$row[word]</td>\n"; $count++; if ($count % $columns == 0) echo "</tr>\n";}echo "</table>\n";[/code]hope this helps! good luck 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.