$array_link = array("link1","link2","link3","link4","link5","link6","link7",);
$intCols=2;
$intElemQty = $counts;
$i=0;
$intRowQty = ceil($intElemQty/$intCols);
$intCols=ceil($intElemQty/$intRowQty);
echo '<table width=100% border=1>';
for ($intRow=1;$intRow<=$intRowQty;$intRow++ ) {
echo '<tr>';
for ($intElem = $intRow; $intElem <= ($intCols-1)*$intRowQty+$intRow; $intElem += $intRowQty) {
if ($intElem <= $intElemQty) {
echo '<td width=50%>' . $array_link[$i++] . '</td>';
} else {
echo '<td> </td>';
}
}
echo '</tr>';
}
echo '</table>';