Hi All,
Just a quick one, I need to out put a query into two columns, i have done it using a solution i found online.. however I couldn't style it with appropriate CSS.
So back to ye old drawing board.
so it will show up like this:
1 2
3 4
5 6
here is my current code:
PHP Code:
<table width="300" border="0" cellspacing="0" cellpadding="5"> <tr> <td> </td> </tr> <?php do { ?> <tr> <td><?php echo $row_rsCatlist['category']; ?></td> </tr> <?php } while ($row_rsCatlist = mysql_fetch_assoc($rsCatlist)); ?> </table>
Thanks in advance
|