Viewing file: encuesta.php (2.21 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// 0. Detectar si se presentan resultados o se deja votar
$polo = 'poll'.$encuesta_id;
if (isset($HTTP_COOKIE_VARS[$polo])) {
require('encuesta_resultados.php');
}else{
require('cookie.php');
}
// 1. Inclusiones Obligatorias
include('../clases_herramientas/include_acciones.php');
include('setup_administracion.php');
?>
<link href="<?php echo $archivo_css; ?>" rel="stylesheet" type="text/css">
<body onLoad="resizeTo(550,400);">
<table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#E8E8E8">
<tr>
<td><table width="100%" border="0" cellspacing="4" cellpadding="4">
<tr>
<td bgcolor="#999999">
<div align="center"></div></td>
</tr>
<tr>
<?php $control = new select_v1(0, "encuesta_hits", "formas_encuesta_opcion", "encuesta_opcion_id = $opcion", 1, 0, "(hits)", "", "");
$hits = $control->RESULTADOS[0][0] + 1;
$query = "update formas_encuesta_opcion set encuesta_hits=" . $hits . " where encuesta_opcion_id=" . $opcion;
$update = new Select($query, "edi_", 0 ,0);
?>
<td><div align="center"><font color="#006699" size="4" face="Verdana, Arial, Helvetica, sans-serif"><strong>Gracias
por participar...</strong></font></div></td>
</tr>
<tr>
<td><p align="center"><font color="#666666" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Su
voto ha sido añadido a la encuesta.</strong></font></p>
<p align="center"><font color="#999999" size="2" face="Verdana, Arial, Helvetica, sans-serif">Si
usted quiere saber cuales son los resultados de la encuesta hasta
el momento <a href="encuesta_resultados.php?encuesta_id=<?php echo $encuesta_id; ?>">haga
clic aqui...</a></font></p></td>
</tr>
<tr>
<td><div align="center"><font color="#999999" size="1" face="Verdana, Arial, Helvetica, sans-serif">Los
datos consignados serán usados sólo con fines estadísticos
<br>
Todos los Derechos Reservados</font></div></td>
</tr>
</table></td>
</tr>
</table>
</body>
|