I'm currently tweaking template code that I have for my game site, and I'm trying show the list of my games, so far, I did it... but the thing is, when I create a table and show the game list (100 games), it only shows up in one column...now is there anyway I can make the code show 10 games in one column, then automatically create another column to show the next 10 games (so, 10column x 10rows total of 100 games) .... sory for bad explanation, im not really a coder, but If you have any questions, just reply... heres the code...
$i = 1; foreach ($games as $game) { $link = get_game_link("id="._sp($game['id'])); echo "<tr><a href='".$link."' class='contenttext'>".$game['name']."</a>"."</tr>"; if(!$i%10) echo "do stuff here"; $i++; }