Viewing file: encuesta.php (1.83 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// 0. Saber si la encuesta es de un contenido o de una categoria
if (isset($patron)) {
$campo_id = "categoria_id";
$id = $patron;
}
if (isset($h_id)) {
$campo_id = "links_id";
$id = $h_id;
}
// 1. Extraer la fecha
if (isset($d) and isset($m) and isset($y))
{
$fecha = $y . "-" . $m . "-" . $d . " 00:00:00";
}else{
$f = new fecha;
$f->sys_fecha();
$fecha = $f->FECHA_SYS;
}
// 2. Definir la condición y hacer consulta
$cuando = $campo_id . "='" . $id . "' and encuesta_fecha_publicacion <= '$fecha' and encuesta_fecha_retiro >= '$fecha' order by encuesta_id";
$control = new select_pg(2, "encuesta_id, encuesta_pregunta", "formas_encuesta", $cuando, 2, 1, "(id)-(pregunta)", "<form action=\"../../administracion/formas/encuesta.php\" method=\"post\" name=\"form1\" target=\"_blank\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"6\"><tr align=\"center\" bgcolor=\"#CCCCCC\"><td colspan=\"2\"><p><strong><font size=\"2\">(pregunta)</font></strong></p></td></tr>", $name_page ,$inicio);
$n_r = $control->NUMERO_REGISTROS;
//echo $n_r;
// 3. Buscar las opciones asociadas a esa encuesta
if ($n_r != 0) {
$e_id = $control->RESULTADOS[0][0];
$cuando = "encuesta_id = " . $e_id;
$control_2 = new select_pg(0, "encuesta_opcion_id, encuesta_opcion_texto", "formas_encuesta_opcion", $cuando, 2, 10, "(o_id)-(o_texto)", "<tr><td width=\"20\"><input type=\"radio\" name=\"opcion\" value=\"(o_id)\"></td><td align=\"left\" width=\"99%\"><p>(o_texto)</p></td></tr>", $name_page ,$inicio);
?>
<tr align="center">
<td colspan="2">
<input type="hidden" name="encuesta_id" value="<?php echo $e_id; ?>">
<input type="submit" name="Submit" value="Votar">
</td>
</tr>
</table>
</form>
<?php
}
?>
|