header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: filename=\"Bib5.xls\";");
?>
require_once("../coneccion.php"); ?>
Sistema resumen
?>
|
NIVEL BACHILLERATO |
| |
| No. | Clave | Nombre | Localidad | Municipio | Telefono |
$sqll = "SELECT * FROM pertenece2018 LEFT JOIN cie_cct2018 ON pertenece2018.clavecct=cie_cct2018.clavecct
WHERE pertenece2018.nv='E' order by cie_cct2018.nombremun, cie_cct2018.clavecct";
$resultt = mysql_query($sqll);
$renglones5 = mysql_num_rows($resultt);
while($row = mysql_fetch_array($resultt)){
//$segui02 = "SELECT * FROM seguimiento2017 where m1!='' and m3!='' and m4!='' and m5!='' and m6!='' and m7!='' and clavecct='$row[clavecct]'";
$segui02 = "SELECT * FROM seguimiento2019 where (folio=1) and clavecct='$row[clavecct]'";
$segui01 = mysql_query($segui02);
$segui = mysql_fetch_array($segui01);
if($segui==''){
$cont5=$cont5+1;
echo " ".$cont5." | ".$row[clavecct]." | ".$row[nombrect]." | ".$row[nombreloc]." | ".$row[nombremun]." | _".$row[lada].$row[telefono1]." | ";
$porcentaje5=$cont5*100/101;
}
}
echo "| |
| Porcentaje de faltantes :". number_format($porcentaje5, 2)." |
";
?>