Prueba este código:
Código PHP:
Ver original<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">
<tr>
<?php for ($j=1; $j < 10; $j++){ ?>
<td> <?php echo $j; ?> </td>
<?php for($i=0; $i < 10; $i++){ ?>
<td><p><a id="enlace1" href="pagina1.php?cod=> <?php $i; ?></a></p></td>
<?php } ?>
</tr>
<?php } ?>
</table>
</div>
<div id="detalles">Seleccioneeee la posición que desee.</div>
</body>
</html>