Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: Hi Maybe this code can do the trick: [code] <? $res = mysql_query(“[insert your mysql query here]“); $rows = mysql_num_rows($res); $counter = 1; $cols = 2; echo (“<table>\n”); for($i = 0; $i < $rows/$cols; $i++) { echo (“<tr>”); for($j=0; $j < $cols && $counter <= $rows ;$j++, $counter++) { echo … |
The End.