Como ejecutar un choice mediante un botón
Trabajo en un proyecto de un colegio donde tengo los 3 niveles de educación que son preescolar primaria y secundaria y necesito hacer una consulta la consulta ya la hace solo que lo necesito mediante un choice de manera que si escojo primaria unicamente me traiga los de primaria y así consecutivamente, lo que no se es como poner que al momento de que oprima el botón y el choice este en cierto nivel unicamente me traiga a esos alumnos...
Espero me puedan ayudar saludos.
Mando el pedazo de código
<?php
include_once("conex.php");
$link= Conectarse();
$result=mysql_query("select * from alumnos",$link);
?>
Students Consult
<label>
<select name="nivel" id="nivel">
<option> </option>
<option value="all">All Students</option>
<option value="Preescolar">Preescolar</option>
<option value="Primaria">Primaria</option>
<option value="Junior High">Junior High</option>
</select>
<input type="submit" name="Consult" id="Consult" value="Consult">
<br>
<br>
<br>
</label>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<TR><TD> Matricula</TD><TD> Nombre</TD><TD> Apellido </TD><TD> Fecha de Nacimiento</TD><TD> Nivel</TD><TD> Grupo</TD><TD> Sexo</TD><TD> Teléfono</TD></TR>
<?php
if(isset($_POST['submit']) && ($_POST['option value'] = "all")){
while($row = mysql_fetch_array($result)) {
printf("
<tr>
<td> %s</td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
</tr>
", $row["id"],$row["nombre"],$row["apellido"],$row["fecha_nac"],$row["nivel"],$row["grupo"],$row["sexo"],$row["tel"]);
}
mysql_free_result($result);
mysql_close($link);
}
?>
</table>
Espero me puedan ayudar saludos.
Mando el pedazo de código
<?php
include_once("conex.php");
$link= Conectarse();
$result=mysql_query("select * from alumnos",$link);
?>
Students Consult
<label>
<select name="nivel" id="nivel">
<option> </option>
<option value="all">All Students</option>
<option value="Preescolar">Preescolar</option>
<option value="Primaria">Primaria</option>
<option value="Junior High">Junior High</option>
</select>
<input type="submit" name="Consult" id="Consult" value="Consult">
<br>
<br>
<br>
</label>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<TR><TD> Matricula</TD><TD> Nombre</TD><TD> Apellido </TD><TD> Fecha de Nacimiento</TD><TD> Nivel</TD><TD> Grupo</TD><TD> Sexo</TD><TD> Teléfono</TD></TR>
<?php
if(isset($_POST['submit']) && ($_POST['option value'] = "all")){
while($row = mysql_fetch_array($result)) {
printf("
<tr>
<td> %s</td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
<td> %s </td>
</tr>
", $row["id"],$row["nombre"],$row["apellido"],$row["fecha_nac"],$row["nivel"],$row["grupo"],$row["sexo"],$row["tel"]);
}
mysql_free_result($result);
mysql_close($link);
}
?>
</table>
1 Respuesta
Respuesta de davidcortesb
1