Viewing file: buscador.php (2.09 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%" border="0" cellspacing="0" cellpadding="8" class="texto">
<tr>
<td width="100%" bgcolor="#333333"><font color="#FFFFFF"><strong>Contenidos</strong></font></td>
</tr>
<tr>
<td>
<?php
$tipo = 1;
if (isset($inicio)) {
}else{
$inicio = 0;
}
if (isset($num_res)) {
}else{
$num_res = 10;
}
$link = "buscador.php";
if (isset($and)) {
$and = str_replace("\'","'",$and);
}else{
// Definición de que si hay qué más buscar se busque.
if (isset($dia) and isset($mes) and isset($ano) and isset($links_tipo_id)) {
$and = "";
$union = 0;
if ($dia != 0 and $mes != 0 and $ano != 0)
{
$fecha_and = $ano . "-" . $mes . "-" . $dia . " 00:00:00";
$and = "and ((links_fecha_publicacion <= '$fecha_and' and links_fecha_retiro >= '$fecha_and') or (links_fecha_publicacion >= '$fecha_and' and links_fecha_retiro = '0000-00-00 00:00:00')) ";
$union = 1;
}
if ($links_tipo_id != 0)
{
if ($union == 0) {
$and = " and links_tipo_id = $links_tipo_id";
}else{
$and = $and . "and links_tipo_id = $links_tipo_id";
}
}
}else{
$and = "";
}
}
//echo $and;
$control = new search($string, $tipo, $inicio, $num_res, $x_y, $user, $link, $and);
$and = "";
?>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td bgcolor="#333333"><font color="#FFFFFF"><strong>Categorias</strong></font></td>
</tr>
<tr>
<td>
<?php $control = new search($string, 4, $inicio, $num_res, $x_y, $user, $link, $and); ?>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td bgcolor="#333333"><font color="#FFFFFF"><strong>Documentos e Imágenes</strong></font></td>
</tr>
<tr>
<td>
<?php $control = new search($string, 2, $inicio, $num_res, $x_y, $user, $link, $and); ?>
</td>
</tr>
<tr bgcolor="#eeeeee">
<td> <p> Resultados Encontrados</p></td>
</tr>
</table>
|