primero la respuesta de busqueda:
Código PHP:
$link=mysql_connect("direccion","usuariol","password")or die("Error en conexión: ".mysql_error());
mysql_select_db("estudios",$link)or die("Error en BD: ".mysql_error());
$string="select * from nota_ex where num_alum='$numero' and semor='$semestre'";
$resp=mysql_query($string,$link)or die("Error en Query: ".mysql_error());
if($rows=mysql_fetch_array($resp)or die("Error en Array: ".mysql_error())){
echo"Examen encontrado<br><br>";
}else{
echo"No se ha encontrado el examen";
}
mysql_free_result($rows)or die("Error en liberar: ".mysql_error());
ahora el de otro formulario de modificación en el cual pasa lo mismo.
Código PHP:
$link=mysql_connect("direccion","usuario","password")or die("Error en conexión: ".mysql_error());
mysql_select_db("estudios",$link)or die("Error en bd: ".mysql_error());
if(isset($modificar)){
echo $n_alumno;
echo $semestre_ex;
$modificar="update nota_ex set num_alum='$numero',exoral='$comi_oral',semor='$semes_oral',notexor='$nota_oral',exesc='$comi_escrito',semes='$se_esc',notexes='$nota_escrito' where num_alum='$n_alumno' and semor='$semestre_ex'";
$final=mysql_query($modificar,$link)or die("Error en Query de modificación: ".mysql_error());
echo"Datos Cambiados";
}else{
echo"No se ha podido realizar modificaciones<br>";
$string="select * from nota_ex where num_alum='$numero' and semor='$semestre'";
$resp=mysql_query($string,$link)or die("Error en Query: ".mysql_error());
if($rows=mysql_fetch_array($resp)or die("Error en Array: ".mysql_error())){
echo"<form action='respuesta_modificar.php' method='post' name='modificar' id='modificar'>";
echo"<table width='75%' border='0' align='center'>
<tr>
<td width='48%'>Numero Alunmo:</td>
<td width='52%'><input type='text' name='numero_alumno' value=$rows[0]></td>
</tr>
<tr>
<td>Comisión Oral:</td>
<td><input type='text' name='comi_oral' value=$rows[1]></td>
</tr>
<tr>
<td>Semestre Oral:</td>
<td><input type='text' name='semes_oral' value=$rows[2]></td>
</tr>
<tr>
<td>Nota Oral:</td>
<td><input type='text' name='nota_oral' value=$rows[3]></td>
</tr>
<tr>
<td>Comisión Escrito:</td>
<td><input type='text' name='comi_escrito' value=$rows[4]></td>
</tr>
<tr>
<td>Semestre Escrito:</td>
<td><input type='text' name='se_esc' value=$rows[5]></td>
</tr>
<tr>
<td>Nota Escrito:</td>
<td><input type='text' name='nota_escrito' value=$rows[6]></td>
</tr>
<tr>
<td><input name='modificar' type='submit' value='Modificar'></td>
<td><input name='limpiar' type='reset' value='Limpiar'></td>
<input name='n_alumno' type=hidden value='$numero'>
<input name='semestre_ex' type='hidden' value='$semestre'>
</tr>
</table>";
echo"</form>";
}
}