<span style="color: rgb(0, 0, 0);"><span style="color: rgb(0, 0, 187);">Algo asi ?
Código PHP:
<?
$array = array("uno","dos","cuatro","cinco","nueve");
$vector = count($array);
echo '<table width="50" height="50" border="1" cellspacing="1" cellpadding="2"> ';
for($j=0; $j<=$vector; $j++)
{
echo '<tr>';
echo '<td>'.$array[$j].'</td>';
echo '</tr>';
}
echo '</table>';
?>