asi imprimo mi tabla
Código PHP:
$users=mysql_query("SELECT * from contratacion");
while ($row = mysql_fetch_array($users, MYSQL_ASSOC)) {
echo '<table width="400" border="2" align="center" cellpadding="0" id="miTabla">';
echo '<tr>';
echo '<td width="200">'.$row['Email'].'</td>';
echo '<td width="200">'.$row['Nombre'].'</td>';
echo '</tr>';
echo '</table>';
mysql_close($con);
}
![sonrisota](http://static.forosdelweb.com/fdwtheme/images/smilies/xD.png)