Viewing file: votacionResultados.php (5.36 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php require_once('../Connections/local.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_local, $local);
$query_resultados = "SELECT inscripciones.id, inscripciones.categoria, inscripciones.nombres, inscripciones.localidad, COUNT(votos.vid) as cvotos, inscripciones.tema FROM inscripciones INNER JOIN votos ON inscripciones.id = votos.id AND inscripciones.categoria = votos.cat GROUP BY inscripciones.id, inscripciones.categoria ORDER BY inscripciones.categoria ASC, cvotos DESC ";
$resultados = mysql_query($query_resultados, $local) or die(mysql_error());
$row_resultados = mysql_fetch_assoc($resultados);
$totalRows_resultados = mysql_num_rows($resultados);
$query_resultados = "SELECT inscripciones.id, inscripciones.categoria, inscripciones.nombres, inscripciones.localidad, COUNT(votos.vid) as cvotos, inscripciones.tema FROM inscripciones INNER JOIN votos ON inscripciones.id = votos.id AND inscripciones.categoria = votos.cat GROUP BY inscripciones.id, inscripciones.categoria ORDER BY inscripciones.categoria ASC, cvotos DESC ";
$resultados = mysql_query($query_resultados, $local) or die(mysql_error());
$row_resultados = mysql_fetch_assoc($resultados);
$totalRows_resultados = mysql_num_rows($resultados);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>O Tomamos Conciencia o No Tomamos Nada</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
background-image: url(Imagenes/fondo_02.jpg);
background-repeat: repeat-x;
}
.Titulo {
font-size: 15px;
color: #1B75BB;
font-weight: bold;
}
.text {
font-size: 10pt;
color: #1B75BB;
}
.Destacado1 {
color: #1B75BB;
font-weight: bold;
font-size: 21px;
}
.Destacado2 {
color: #1B75BB;
font-size: 16px;
}
.Estilo2 {
font-size: 15px;
color: #1B75BB;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.Estilo5 {
color: #1B75BB;
font-weight: bold;
font-size: 21px;
font-family: Arial, Helvetica, sans-serif;
}
a:link {
text-decoration: none;
color: #1B75BB;
}
a:visited {
text-decoration: none;
color: #1B75BB;
}
a:hover {
text-decoration: none;
color: #1B75BB;
}
a:active {
text-decoration: none;
color: #1B75BB;
}
.Estilo7 {
color: #1B75BB;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-weight: bold;
}
.msg {
position:absolute;
top:52px;
left:98px;
width: 199px;
text-align:center;
}
-->
</style>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
</head>
<body class="Estilo5" onload="MM_preloadImages('Imagenes/boton_over_campaƱa.jpg')">
<table width="100%" border="0" cellspacing="3" cellpadding="3">
<tr>
<th scope="col">ID</th>
<th scope="col">Categoria</th>
<th scope="col">Tema</th>
<th scope="col">Nombres</th>
<th scope="col">Localidad</th>
<th scope="col">Votos</th>
</tr>
<?php do { ?>
<tr align="center" valign="middle" class="text">
<td><?php echo $row_resultados['id']; ?></td>
<td><?php echo $row_resultados['categoria']; ?></td>
<td><?php echo $row_resultados['tema']; ?></td>
<td><?php echo $row_resultados['nombres']; ?></td>
<td><?php echo $row_resultados['localidad']; ?></td>
<td><?php echo $row_resultados['cvotos']; ?></td>
</tr>
<?php } while ($row_resultados = mysql_fetch_assoc($resultados)); ?>
</table>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10523892-15']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
<?php
mysql_free_result($resultados);
?>
|