Código PHP:
$link=mysql_connect("conexion")or die("Error en conexion ".mysql_error());
mysql_select_db("bd")or die("Error en seleccion BD ".mysql_error());
$string="select * from alumnos where numero='$numero'";
$busqueda=mysql_query($string,$link);
if($rows=mysql_fetch_array($busqueda)){
echo $rows["a_nombre"];
echo"<form name=modificacion method=post action=''>
<table width=101% height=156 border=0 align=center>
<tr>
<td width=35%>Número:</td>
<td width=65%><input name=numero type=text id=numero value='$rows[numero]' size=10></td>
</tr>
<tr>
<td>Nombre Completo:</td>
<td><input name=a_nombre type=text id=a_nombre value='$rows[a_nombre]' size=50></td>
</tr>
<tr>
<td>Dirección:</td>
<td><input name=direccion type=text id=direccion value='$rows[direccion]' size=50></td>
</tr>
<tr>
<td>Ciudad:</td>
<td><input name=ciudad type=text id=ciudad value='$rows[ciudad]'></td>
</tr>
<tr>
<td>Telefono:</td>
<td><input name=telefono type=text id=telefono value='$rows[telefono]'></td>
</tr>
<tr>
<td>Diocesis:</td>
<td><input name=diosesis type=text id=diosesis value='$rows[diosesis]'></td>
</tr>
<tr>
<td>Cédula:</td>
<td><input name=cedula type=text id=cedula value='$rows[cedula]'></td>
</tr>
<tr>
<td>Fecha Ingreso:</td>
<td><input name=fecha_ing type=text id=fecha_ing value='$rows[fecha_ing]' size=20></td>
</tr>
<tr>
<td>Fecha de Egreso:</td>
<td><input name=fecha_egr type=text id=fecha_egr value='$rows[fecha_egr]' size=20></td>
</tr>
<tr>
<td>Curriculum:</td>
<td><input name=curri type=text id=curri value='$rows[curri]' size=20></td>
</tr>
<tr>
<td><input name=modificar type=submit id=modificar value=Modificar></td>
<td><input name=corregir type=reset id=corregir value=Corregir></td>
</tr>
</table>
</form>";
}else{
echo"El alumno $nombre, ha sido ingresado";
}
?>
al parecer no esta recibiendo la variable $numero