Cita:
Iniciado por PIRRUMAN pon el codigo q usas. seguro es una etiqueta no bien cerrada
Código HTML:
<html>
<head>
<script src="funciones.js" language="JavaScript"></script>
<link rel="StyleSheet" href="estilos.css" type="text/css">
</head>
<body>
<h1>Titulo</h1>
<div id="menu">
<table border ="1">
<?php
for ($j=1; $j < 10; $j++){
echo "<tr>";
echo "<td>".$j."</td>";
for($i=0; $i < 10; $i++){
echo "<td><p><a id="enlace1" href="pagina1.php?cod=1"></a></p></td>";
}
echo "</tr>";
}
?>
</table>
</div>
<div id="detalles">Seleccione la posición que desee.</div>
</body>
</html>