In qusto modo ti fa la paginazione in due colonne:
Codice PHP:
  $result=//risultato della query
    
while($row=mysql_fetch_array($result))
{

   
$nome[]=$row['nome'];
    
$cognome[]=$row['telefono'];
}
 
$table="<table  width='200'border='1'>";
    
$num_rows=ceil(count($nome)/3);

     
$a=0;


   for(
$i=0;$i<$num_rows;$i++)
   {

     
$table.="<tr>";
    for(
$k=0;$k<2;$k++)
    {
      
$a++;
if(@
$nome[$a-1]==null)
    {

      
$table.="<td width='33%'>&nbsp</td>";
    }
else{
      
$table.="<td width='33%' >".$nome[$a-1]." ".$cognome[$a-1]."</td>";

     }
      }
   
$table.="</tr>";

     }




$table.="</table>";
echo 
$table?>