Viewing file: interes.php (3.28 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!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>
<title>Notificaciones</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="styles2.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="js/jquery.scrollShow.js"></script>
</head>
<body>
<h1 align="center">Avisos de Interes</h1>
<p><br>
</p>
<h3 align="justify" style="color:#666">Artículo 107. Notificación por edicto. Los autos que deciden la apertura de indagación preliminar e investigación y fallos que no pudieren notificarse personalmente se notificarán por edicto. Para tal efecto, una vez producida la decisión, se citará inmediatamente al disciplinado, por un medio eficaz, a la entidad donde trabaja o a la última dirección registrada en su hoja de vida o a la que aparezca en el proceso disciplinario, con el fin de notificarle el contenido de aquella y, si es sancionatoria, hacerle conocer los recursos que puede interponer. Se dejará constancia secretarial en el expediente sobre el envío de la citación.
<br /></h3>
<?php // header( 'Content-type: text/html; charset=iso-8859-1' );
include ("conex.php");
$zone=3600*-5;
$hoy=gmdate("Y-m-d", time() + $zone);
//echo $date;
/* Control Disciplinario */
$order = " order by id desc ";
$sqlt = "select id,no,DATE_FORMAT(fecha,'%d-%m-%Y') AS fecha,resuelve,usuario,sector,tipo,DATE_FORMAT(fijacion,'%d-%m-%Y') AS fijacion,DATE_FORMAT(desfijacion,'%d-%m-%Y') AS desfijacion from notificaciones where tipo = 'INTERES' and '$hoy' >= fijacion and '$hoy' <= desfijacion";
$sqldef=$sqlt.$order;
//echo "$sqldef";
$sql=mysql_query($sqldef,$con);
$num_rows = mysql_num_rows($sql);
//muestra los datos consultados
echo "<table>
<caption>
<h3>Registros: $num_rows </h3>
<br />
<br />
</caption>
<thead>
<tr class='odd'>
<th scope='col' abbr='Home'><h5><span></span>Nombre(s)</h5></th>
<th scope='col' abbr='Home'><h5><span></span>resolución No.</h5></th>
<th scope='col' abbr='Home'><h5><span></span>titulo</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Expedición</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Fijación</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Desfijación</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Archivo</h5></th>
</tr>
</thead>
<tfoot>";
while($row = mysql_fetch_array($sql)){
$cont=$cont+1;
if ($cont % 2 == 0)
$class= "class='odd'";
if ($cont % 2 == 1)
$class= "";
$year1=date("Y", strtotime($row[fecha]));
$ip = 'http://190.27.245.106/BLA';
$acto=strtoupper($table);
echo "
<tr $class>
<th>$row[usuario]</th>
<td>$row[no]</td>
<td>$row[resuelve]</td>
<td>$row[fecha]</td>
<td>$row[fijacion]</td>
<td>$row[desfijacion]</td>
<td><A href='$ip/resoluciones/Notificaciones/$row[tipo] $year1/$row[no].pdf' target=_blank><img src='images/pdf.gif' border='0' align='absmiddle' /></a></td></tr>
";
}
echo "</table>";
?>
</body>
</html>
|