Código PHP:
<?php require_once('Connections/cn.php'); ?>
<?php
$valor=$_GET["ID"];
mysql_select_db($database_cn, $cn);
$sql="select * from pagos where ID_alumno='$valor' ";
$sql2="select * from alumnos where ID='$valor' ";
$r=mysql_query($sql);
$r2=mysql_query($sql2);
$res=mysql_fetch_array($r);
$res2=mysql_fetch_array($r2);
?>
<?php
while ($res=mysql_fetch_array($r))
{
?>
<tr class="Estilo1">
<td width="100" align="center" valign="top">
<?php echo $res["ID"];?>
</td>
<td width="250" align="center" valign="top">
<?php echo $res2["nombre"];?>
</td>
<td width="80" align="center" valign="top">
<?php echo $res["conceptopago"];?>
</td>
<td width="70" align="center" valign="top">
<?php echo $res["periodopago"];?>
</td>
<td width="60" align="center" valign="top">
<?php echo $res["cantidad"];?>
</td>
<td width="100" align="center" valign="top">
<?php echo $res["facorec"]?>
</td>
<td width="120" align="center" valign="top">
<?php echo $res["fechapago"]?>
</td>
<td width="50" align="center" valign="top">
<?php echo $res["hora"]?>
</td>
</tr>
<?php
}
?>
MUCHAS GRACIAS POR SU AYUDA!!!!