Código PHP:
echo "<table width=200 border=2 align=center>";
echo "<tr>";
echo "<td><div align=center>Fecha</div></td>";
echo "<td><div align=center>Hora</div></td>";
echo "<td width=200><div align=center>Contacto</div></td>";
echo "<td><div align=center>Telefono</div></td>";
echo "<td width=200><div align=center>Empresa</div></td>";
echo "<td width=200><div align=center>Mensaje</div></td>";
echo "<td><div align=center>Observaciones</div></td>";
echo "<td><div align=center>Accion</div></td>";
echo "</tr>";
while($row = mysql_fetch_array($resultado))
{
echo "<tr>";
echo "<td>".$row["fecha"]."</td>";
echo "<td>".$row["hora"]."</td>";
echo "<td>".$row["persona_contacto"]."</td>";
echo "<td>".$row["telefono"]."</td>";
echo "<td>".$row["empresa"]."</td>";
echo "<td>".$row["msg"]."</td>";
echo "<td>".$row["obs"]."</td>";
echo "<td><A href="eliminar.php?idll='.row[idll].'">Eliminar</td>";
echo "</tr>";
}
echo "</table>";
Desde ya muchas gracias.
Emiliano