what's an efficient way to make two columns per row and print the name in each? so if the mysql table had 4 names, the html table would look like:
[ name1 ] [ name2 ]
[ name3 ] [ name4 ]
i have the following code so far:
$r=mysql_query("select name from table");
while ($var=mysql_fetch_array($r){
// print two names per row
}