When I write this , it will echo 1 column with 5 rows , but I want it echo 5 columns with 3 row , there are 5 colums(td) in every row(tr) , how I must write , please show me , thank you . <table border="1" width="100%"> <? $i = 0 ; while ($i < 5) { $i++ ; echo "<tr><td>$i</td></tr>" ; } ?> </table> -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php