Para cuando te conectes de nuevo, el código bien echo (con las normas del buen arte) sería así:
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 echo $i; ?>"> enlace </p></td>
<?php endfor; ?>
</tr>
<?php endfor; ?>
</table>
</div>
<div id="detalles">Seleccioneeee la posición que desee.</div>
</body>
</html>
No te preocupes por el tiempo que gaste, lo acabo de aprender :D