Hola Triste hombre
mira hay veces que tengo problemas con la compresión y en otras ocasiones con la mala redacción, tratare de darte una mano:
Código PHP:
Ver original<table border="1">
<!--SE ELIMINARION CIERTOS ATRIBUTOS QUE <TH> DA POR DEFECTO
SE AGREGA THEAD Y TBODY -->
<tr style="background-color:#0099FF">
<th valign="top" width="100">N° de pago</th>
<th valign="top" width="300">Nombre</th>
<th valign="top" width="200">Concepto</th>
<th valign="top" width="70">periodo</th>
<th valign="top" width="150">cantidad</th>
<th valign="top" width="100">N° de factura</th>
<th valign="top" width="80">Fecha</th>
<th valign="top" width="80">Hora</th>
<th valign="top" width="80">Funcion</th>
</tr><!-- ESTE TR NO ESTABA, AGREGADO POR Perr0 -->
<?
//ESTA PARTE TU SABES COMO CONECTAS
require_once('Connections/cn.php');
$valor=$_GET["ID"];
//CON ESTO TENEMOS UNA CONSULTA CON LAS DOS TABLAS
$consulta="SELECT * FROM pagos INNER JOIN ID=ID_alumno WHERE ID_alumno='$valor'";
print "<tr>";
print "<td>".$res['ID']."</td>";
print "<td>".$res['nombre']."</td>";
print "<td>".$res['conceptopago']."</td>";
print "<td>".$res['periodopago']."</td>";
print "<td>".$res['cantidad']."</td>";
print "<td>".$res['facorec']."</td>";
print "<td>".$res['fechapago']."</td>";
print "<td>".$res['hora']."</td>";
print "<td width=\"55\" valign=\"top\">
<a href=\"adminpagos.php?ID=$res['ID']\" title=\"Regustrar Pago\">
<img src=\"pago.bmp\" width=\"24\" height=\"24\" border=\"0\"></a></td>";
print "</tr>";
}
?>
</table>
espero te sirva, la idea es armar bien el codigo y no estabas usando while para armar el bucle de la consulta,
se me olvido agregar thead y tbody, pero es cosa tuya
salu2