Viewing file: encuesta_resultados.php (2.96 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include('../clases_herramientas/include_acciones.php');
include('setup_administracion.php');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Resultados de la encuesta</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body onLoad="resizeTo(600,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>
<td><div align="center"><font color="#006699" size="4" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#999999">Resultados
de la Encuesta...</font><br>
<font size="2"><?php $control = new select_v1(0, "encuesta_pregunta", "formas_encuesta", "encuesta_id = $encuesta_id", 1, 0, "(pregunta)", "(pregunta)", ""); ?><br>
<font color="#666666" size="1">Total votos: <?php $control = new select_v1(0, "sum(encuesta_hits) as suma", "formas_encuesta_opcion", "encuesta_id = $encuesta_id", 1, 0, "(suma)", "(suma)", ""); $total = $control->RESULTADOS[0][0]; ?></font></font></strong></font></div></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="2" cellpadding="2">
<?php $control = new select_v1(0, "encuesta_opcion_texto, encuesta_hits", "formas_encuesta_opcion", "encuesta_id = $encuesta_id", 2, 0, "(o_texto)-(o_hits)", "", ""); ?>
<?php
$n_r = $control->NUMERO_REGISTROS;
//echo $n_r;
for ($i_1 = 0; $i_1 < $n_r; $i_1++) {
$n_opc = $control->RESULTADOS[$i_1][0];
$n_hits = $control->RESULTADOS[$i_1][1];
@$repeticiones = round(($n_hits * 100) / $total);
@$nominal = number_format($repeticiones, 2);
?>
<tr>
<td width="25%">
<div align="right"><strong><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><?php echo $n_opc; ?></font></strong></div></td>
<td width="75%"><font color="#999999" face="Arial, Helvetica, sans-serif"><strong><font size="1">
<?php
for ($i = 1; $i <= $repeticiones; $i++) {
print "I";
}
?>
</font> <font size="1" face="Verdana, Arial, Helvetica, sans-serif"><?php echo $nominal; ?>%
</font></strong></font></td>
</tr>
<?php } ?>
</table></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>
<strong>Todos los Derechos Reservados</strong></font></div></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
<?php
exit;
?>
|