Respuesta: ¿Cómo eliminar los valores que toma mi formulario al momento de enviar par Gracias ceSharp.
Si tengo una función: "function submt(nivel)".
Este es mi código:
<? session_start();
include('../config.php');
include('../functions.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head>
<body> <?php
$clave = $_SESSION['clave'];
$user=mysql_query("select * from usuarios_encabezados where empleado=$clave",$link)or die(mysql_error());
if (mysql_affected_rows($link)<=0 ){ mysql_close($link); die("No existe en usuarios"); }
$rowU = mysql_fetch_array($user);
$nivelUsuario=$rowU["nivel_preceptoria"];
$seccionU=$rowU["seccion_preceptoria"];
$seccion=""; if(!empty($_POST['seccion_'])) $seccion=$_POST["seccion_"];
$grado=0; if(!empty($_POST['grado_'])) $grado=$_POST["grado_"];
$grupo=""; if(!empty($_POST['grupo_'])) $grupo=$_POST["grupo_"];
$preceptor=0; if(!empty($_POST['preceptor'])) $preceptor=$_POST['preceptor'];
$ver_reporte='N'; if(!empty($_POST['ver_reporte'])) $ver_reporte=$_POST['ver_reporte'];
$fecha_ini=""; if(!empty($_POST['fecha_ini'])) $fecha_ini=$_POST['fecha_ini'];
$fecha_fin=""; if(!empty($_POST['fecha_fin'])) $fecha_fin=$_POST['fecha_fin'];
$alumno=0; if(!empty($_POST['alumno_'])) $alumno=$_POST['alumno_'];
$pregunta1=0; if(!empty($_POST['pregunta1_'])) $pregunta1=$_POST['pregunta1_'];
$pregunta2=0; if(!empty($_POST['pregunta2_'])) $pregunta2=$_POST['pregunta2_'];
//$test=0; if(!empty($_POST['test_'])) $test=$_POST['test_'];
$test=0; if(!empty($_POST['test'])) $test=$_POST['test'];
$al_kardex=0; if(!empty($_POST['al_kardex'])) $al_kardex=$_POST['al_kardex'];
$cruce_Pregunta1=0; if(!empty($_POST['pregunta1'])) $cruce_Pregunta1=$_POST['pregunta1'];
$cruce_Pregunta2=0; if(!empty($_POST['pregunta2'])) $cruce_Pregunta2=$_POST['pregunta2'];
$tipo=""; if(!empty($_POST['tipo_'])) $tipo=$_POST['tipo_'];
$val=" "; if(!empty($_POST['val'])) $val=$_POST['val'];
$imprimir_color=" "; if(!empty($_POST['imprimir_color'])) $imprimir_color=$_POST['imprimir_color'];
$totAsistenciaP=0;
$totAsistenciaM=0;
$totAmbos=0;
$nombre_test="";
$totEntrevistas=0;
$totalFinal=0;
$imprimirMes="";
$cnt=0;
$and="";
if($seccion!="") $and.=" and alumnos.seccion='$seccion' ";
if($grado!=0) $and.=" and alumnos.grado=$grado ";
if($grupo!="") $and.=" and alumnos.grupo='$grupo' ";
if($preceptor!=0) $and.=" and alumnos.preceptor=$preceptor ";
if($alumno!=0) $and.=" and alumnos.alumno=$alumno ";
//Sección
$secciones="Sección<select onChange='submt(1)' style='font-size:8pt' name='seccion' id='seccion'>";
$sql=returnQuery($nivelUsuario,"seccion","","","", $seccionU,0,"");
$result=mysql_query($sql,$link)or die("$sql".mysql_error());
if (mysql_affected_rows($link)>0)
{ if($nivelUsuario==11) $secciones.="<option value=''>Todos</option>";
$desc_seccion="";
while($row=mysql_fetch_array($result))
{
$selected=""; if($seccion==$row["seccion"]){ $selected="selected"; $desc_seccion=$row["nombre"]; }
$secciones.="<option $selected value='".$row["seccion"]."'>".$row["nombre"]."</option>";
}
} $secciones.="</select><input type='hidden' name='seccion_' id='seccion_' value='$seccion'> ";
//Grado
$grados="Grado<select onChange='submt(2)' style='font-size:8pt;' name='grado' id='grado'><option value='0'>Todos</option>";
$sql=returnQuery($nivelUsuario,"grado",$seccion,"" ,"",$seccionU,0,"");
//echo "sql_grados=$sql<br>";
$result=mysql_query($sql,$link)or die("$sql".mysql_error());
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($result))
{ $selected=""; if($grado==$row["grado"]) $selected="selected";
$grados.="<option $selected value='".$row["grado"]."'>".$row["grado"]."</option>";
}
} $grados.="</select><input type='hidden' name='grado_' id='grado_' value='$grado'> ";
//Grupo
$grupos="Grupo<select onChange='submt(3)' style='font-size:8pt;' name='grupo' id='grupo'><option value=''>Todos</option>";
$sql=returnQuery($nivelUsuario,"grupo",$seccion,$g rado,"",$seccionU,0,"");
//echo "sql_grupos=$sql<br>";
$result=mysql_query($sql,$link)or die("$sql".mysql_error());
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($result))
{ $selected=""; if($grupo==$row["grupo"]) $selected="selected";
$grupos.="<option $selected value='".$row["grupo"]."'>".$row["grupo"]."</option>";
}
} $grupos.="</select><input type='hidden' name='grupo_' id='grupo_' value='$grupo'> ";
//Preceptor
$preceptores="Preceptor<select name='preceptor' id='preceptor' ><option value=0>Todos</option>";
//$sql=returnQuery($nivelUsuario,"preceptor",$seccio n,$grado,$grupo,$seccionU,0,""); //echo "sql_preceptores=$sql<br>";
//$result=mysql_query($sql,$link)or die("$sql".mysql_error());
$rs_=mysql_query("SELECT empleado, nombre, apellido_paterno, apellido_materno FROM personal order by nombre",$link) or die (mysql_error());
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($rs_))
{ $selected=""; if($preceptor==$row["empleado"]) $selected="selected";
$preceptores.="<option $selected value='".$row["empleado"]."'>".$row["apellido_paterno"]." ".$row["apellido_materno"]." ".$row["nombre"]."</option>";
}
} $preceptores.="</select><input type='hidden' name='preceptor_' id='preceptor_' value='$preceptor'> ";
//Alumnos por preceptor
$result=mysql_query("Select * from alumnos where activo='A' and preceptor=$preceptor",$link)or die("Select * from alumnos where activo='A' and preceptor=$preceptor".mysql_error());
$alms_prcptr="Alumno<select onChange='submt(5)' style='font-size:8pt;' name='alumno' id='alumno'><option value=0>Todos</option>";
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($result))
{ $selected=""; if($alumno==$row["alumno"]) $selected="selected";
$alms_prcptr.="<option $selected value='".$row['alumno']."'>".$row["apellido_paterno"]." ".$row["apellido_materno"]." ".$row["nombre"]."</option>";
}
} $alms_prcptr.="</select><input type='hidden' name='alumno_' id='alumno_' value='$alumno'> ";
//Busca alumnos
$busca_alumnos="Alumno<input name='val' id='val'><input type='submit' value='Buscar'><select style='font-size:8pt;' onChange='alumno_.value=this.value'><option value=''>Todos</option>";
$sede=mysql_result(mysql_query("select sede from parametros",$link),0,0);
$r=mysql_query("select * from alumnos where plantel=$sede and CONCAT_WS(' ',apellido_paterno,apellido_materno,nombre) like '%$val%' order by apellido_paterno,apellido_materno,nombre",$link)or die("select * from alumnos where plantel=$sede and CONCAT_WS(' ',apellido_paterno,apellido_materno,nombre) like '%$val%' order by apellido_paterno,apellido_materno,nombre".mysql_er ror());
if(mysql_affected_rows($link)>0)
{ while($a=mysql_fetch_array($r))
{ $selected=""; if($alumno==$row["alumno"]) $selected="selected";
$busca_alumnos.="<option $selected value='".$a[0]."'>".$a[0]."-".$a[22]." ".$a[23]." ".$a[1]."</option>";
} $busca_alumnos.="</select><input type='hidden' name='alumno_' id='alumno_' value='$alumno'> ";
}
//Test
$tests="Test<select name='test' id='test'><option value=0>Todos</option>";
$rs_=mysql_query("SELECT id_test, nombre FROM test order by nombre",$link) or die (mysql_error());
if(mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($rs_))
{ $nombreTest=""; $selected=""; if($test==$row["id_test"]){ $selected="selected"; $nombreTest=$row['id_test']; }
$tests.="<option $selected value='".$row['id_test']."'>".$row['nombre']."</option>";
} $tests.="</select><input type='hidden' name='test_' id='test_' value='$test'> ";
}
//Preguntas por test1
$result=mysql_query("SELECT id_pregunta, pregunta FROM test_preguntas, test where test.id_test=test_preguntas.id_test
and test_preguntas.id_test = $test order by id_pregunta",$link)or die("SELECT id_pregunta, pregunta FROM test_preguntas, test where test.id_test=test_preguntas.id_test
and test_preguntas.id_test = $test order by id_pregunta".mysql_error());
$preg_test1="Pregunta 1<select style='font-size:8pt;' name='pregunta1' id='pregunta1'><option value=0>Todos</option>";
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($result))
{ $selected=""; if($cruce_Pregunta1==$row["id_pregunta"]) $selected="selected";
$preg_test1.="<option $selected value='".$row['id_pregunta']."'>".$row['pregunta']."</option>";
}
} $preg_test1.="</select>";//<input type='hidden' name='pregunta1_' id='pregunta1_' value='$cruce_Pregunta1'> ";
//Preguntas por test2
$result=mysql_query("SELECT id_pregunta, pregunta FROM test_preguntas, test where test.id_test=test_preguntas.id_test
and test_preguntas.id_test = $test order by id_pregunta",$link)or die("SELECT id_pregunta, pregunta FROM test_preguntas, test where test.id_test=test_preguntas.id_test
and test_preguntas.id_test = $test order by id_pregunta".mysql_error());
$preg_test2="Pregunta 2
<select style='font-size:8pt;' name='pregunta2' id='pregunta2'><option value=0>Todos</option>";
if (mysql_affected_rows($link)>0)
{ while($row=mysql_fetch_array($result))
{ $selected=""; if($cruce_Pregunta2==$row["id_pregunta"]) $selected="selected='selected'";
$preg_test2.="<option $selected value='".$row['id_pregunta']."'>".$row['pregunta']."</option>";
}
} $preg_test2.="</select>";
?> |