File: /home/asjudine/www/apostventas/consulta_correos_nnee.php
<!DOCTYPE html>
<html>
<head>
<title>Listado Correos NNEE</title>
<meta http-equiv="X-UA-Compatible" content="IE=8; IE=9; IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
*{margin: 0;padding: 0;}
body{background-image:url(../ELEMENTS/fondo.jpg);font-family:Geneva, Arial, Helvetica, sans-serif;}
header {background-color: #B7271F; text-align: center;}
.cerrarsesion{width: auto;height: 20px;background-color: #DBD8C9;color: #000;font-size: 13px;position:absolute;top: 15px;right:10px;z-index:0;padding: 10px;border-radius: 10px;cursor: pointer;}
.cerrarsesion:hover{background-color: #ffffff;color: #000;}
.titulo{width: 100%;text-align: center;background-color: #dbd8c9;color: #b20606;padding: 6px 0;font-size: 18px;}
table{margin: 0 auto;border: 8px solid #bebebe;}
.divirmenu{text-align: center;}
.irmenu{width: 100px;background-color: #1c4fa0;color: #fff; padding: 3px;border-radius: 6px;}
.irmenu:hover{background-color: #67a0d9; color: #000;}
.fecha{background-color: #d6e08b; padding: 2px;color: #000;font-size: 15px;}
td{padding: 1px; border: 1px solid #a0a0a0;}
.td{background-color: #e5e5e5; padding: 1px 30px;color: #00135F;font-size: 14px;font-weight: 600; text-align: center;}
.boton1{width: 100px;background-color: #ffffff;color: #000;padding: 2px;border:2px solid #580000;border-radius:10px;}
.boton1:hover{background-color: #6f0000;color: #fff;cursor: pointer;}
input[type=text]{border-radius: 5px; padding: 3px;background-color: #fffde8;}
.tdtitulo{background-color: #e3dec0; color: #b20606; padding: 2px; text-align: center; font-size: 12px; font-weight: 900}
.tdfull{background-color: #fff; color: #000; padding: 1px; text-align: center; font-size: 12px;}
.botonnew{width: 90px; background-color: #e3dec0;color: #b20606;padding: 1px;border-radius:5px;}
.botonnew:hover{width: 90px; background-color: #cbbd6a;color: #000;padding: 1px;border-radius:5px;}
</style>
<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<body>
<header>
<img src="../ELEMENTS/bannerInterasjudinet.png" alt="" width=" 700" height="70">
</header>
<h3 class="titulo">LISTADO CORREOS NNEE</h3>
<form action="" method="post" name="form1" class="provd" id="form1">
<div align="center">
<table width="381" border="3" cellpadding="3" cellspacing="3" bgcolor="silver">
<!--<tr>
<td colspan="3" bgcolor="#D2D2D2"><div align="center" class="Estilo54">LISTADO CORREOS NNEE</div></td>
</tr>-->
<tr>
<td class="td" width="320">Seleccione Grado</td>
<td class="td" width="171">
<select name="grado" class="Estilo66" id="grado">
<option value="">--SELECIONE GRADO--</option>
<option value="ST">ST</option>
<option value="TE">TE</option>
<option value="CT">CT</option>
<option value="MY">MY</option>
<option value="TC">TC</option>
<option value="CR">CR</option>
<option value="BG">BG</option>
<option value="MG">MG</option>
</select>
</td>
</tr>
</table>
<p>
<input name="menu2" type="button" class="irmenu" id="menu2" onclick="window.location.href='../menu_admin.php'" value="IR AL MENU" />
<input name="consultar" id="consultar" type="submit" class="boton1" value="CONSULTAR">
</p>
</div>
</form>
</body>
</html>
<?php
global $dbi;
$espacio = ' ';
$linea = '-';
require_once("../Conectarse.php");
if(isset($_POST["consultar"]))
{
$control = mysql_query('SELECT cedula,grado,nombre,email FROM cartera_serviasjudinet WHERE unidad_descuento = "NNEE" and grado = "'.$_POST["grado"].'" and estado= "1" and (email!="" and email !="0" and email !="." and email !="-" and email !="--" and email !="..") order by nombre ');
if (!$control) {
die('Invalid query 2: ' . mysql_error());
}
if ((mysql_num_rows($control)!=0))
{
echo "<TABLE width='800' border='8' align='center' cellpadding='2' cellspacing='1'>
<TR>
<TD class='tdtitulo'>CEDULA</TD>
<TD class='tdtitulo'>GRADO</TD>
<TD class='tdtitulo'>NOMBRE</TD>
<TD class='tdtitulo'>EMAIL</TD>";
while(list($cedula,$grado,$nombres,$email) = mysql_fetch_row($control))
{
$sum = $sum + 1;
printf("<tr>
<td class='tdfull'>".$cedula."</td>
<td class='tdfull'>".$grado."</td>
<td class='tdfull'>".$nombres."</td>
<td class='tdfull'>".$email."</td>"); }
echo "</table>";
echo "<TABLE width='200' border='6' align='center' cellpadding='0' cellspacing='1'>
<TR>
<TD class='tdtitulo'>TOTAL REGISTROS</TD></TD>";
printf("<tr>
<td class='tdfull'>".$sum."</td></td>");
echo "</table>";
}
else
{
echo "<script>alert('No Existen Correos Registrados En El Grado ".$_POST["grado"]."');</script>";
}
}
echo "</form>";
?>