Viewing file: consulta_actos1.php (4.07 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php //header( 'Content-type: text/html; charset=iso-8859-1' );
include ("conex.php");
/*
echo $_GET['tipo'];
echo $_GET['no'];
echo $_GET['usuario'];
echo $_GET['sector'];
echo $_GET['fecha'];
echo $_GET['resuelve'];
*/
if($_GET['tipo'] != ""){
$sqltipo= $_GET['tipo'];
}
if($_GET['no'] != ""){
$sqlno= " and no = '$_GET[no]'";
}
if($_GET['usuario'] != ""){
$sqlusuario= " and usuario like '%$_GET[usuario]%'";
}
if($_GET['fecha'] != ""){
$sqlfecha= " and year( fecha ) = '$_GET[fecha]'";
}
if($_GET['resuelve'] != ""){
$sqlresuelve= " and resuelve like '%$_GET[resuelve]%'";
}
if($_GET['sector'] != ""){
$sqlsector= " and sector = '$_GET[sector]'";
}
$order = " order by no desc, fecha desc ";
$sqlt = "select id,tipo,no,DATE_FORMAT(fecha,'%d-%m-%Y') AS fecha,resuelve,expediente,usuario,sector,subsector,abogado,direccion from $sqltipo where 1=1 ";
$sqldef=$sqlt.$sqlid.$sqlno.$sqlfecha.$sqlresuelve.$sqlexpediente.$sqlusuario.$sqlsector.$sqlsubsector.
$sqlabogado.$sqldireccion.$order;
//echo "$sqldef";
$sql=mysql_query($sqldef,$con);
$num_rows = mysql_num_rows($sql);
//muestra los datos consultados
echo "<table>
<caption>
<h5>Actos Administrativos Encontrados: $num_rows </h5></caption>
<thead>
<tr class='odd'>
<th scope='col' abbr='Home'><h5><span></span>No.</h5></th>
<th scope='col' abbr='Home'><h5><span></span>   Fecha    </h5></th>
<th scope='col' abbr='Home'><h5><span></span>Usuario</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Título</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Sector</h5></th>
<th scope='col' abbr='Home'><h5><span></span>Descargar</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($_GET['fecha_concepto']));
$ip = 'http://190.27.245.106/BLA';
//$path =
$acto=strtoupper($_GET['tipo']);
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].pdf")){
$ext ="pdf";
$img ="images/pdf.gif";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].docx")){
$ext ="docx";
$img ="images/word.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].doc")){
$ext ="doc";
$img ="images/word.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].jpg")){
$ext ="jpg";
$img ="images/jpg.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].tiff")){
$ext ="tiff";
$img ="images/tiff.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no].rtf")){
$ext ="rtf";
$img ="images/rtf.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.pdf")){
$ext1 ="pdf";
$img1 ="images/pdf.gif";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.docx")){
$ext1 ="docx";
$img1 ="images/word.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.doc")){
$ext1 ="doc";
$img1 ="images/word.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.jpg")){
$ext1 ="jpg";
$img1 ="images/jpg.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.tiff")){
$ext1 ="tiff";
$img1 ="images/tiff.png";
}
if (file_exists("../resoluciones/$acto $_GET[fecha]/$row[no]-.rtf")){
$ext1 ="rtf";
$img1 ="images/rtf.png";
}
echo "
<tr $class>
<th>$row[no]</th>
<td>$row[fecha]</td>
<td>$row[usuario]</td>
<td>$row[resuelve]</td>
<td>$row[sector]</td>
<td><A href='$ip/resoluciones/$acto%20$_GET[fecha]/$row[no].$ext' target=_blank align='right'>Acto: <img src='$img' width='16' height='16' border='0' align='absmiddle' /></a></br><A href='$ip/resoluciones/$acto%20$_GET[fecha]/$row[no]-.$ext1' target=_blank align='right'>Notificación:<img src='$img1' width='16' height='16' border='0' align='absmiddle' /> </a>
</td></tr>
";
}
?>
|