prepare("$sql");
$res->execute();
list($chiusa) = $res->fetch(PDO::FETCH_NUM);
//if($chiusa!='1') numeri_sezione(); # se la consultazione non è chiusa
numeri_sezione(); //lancia la funzione
function numeri_sezione() {
global $prefix, $dbi, $circo, $genere,$id_cons_gen,$id_cons,$id_circ,$tipo_cons,$votog,$id_comune;
if (isset($circo) and $circo) $circos="and t2.id_circ='$id_circ'";
else $circos='';
if ($genere==0) $tab="ref";elseif($genere=='4' || $votog) $tab="lista";
else $tab="gruppo";
# numero sezioni
$sql="select t1.id_sez,t1.num_sez from ".$prefix."_ele_sezioni as t1 left join ".$prefix."_ele_sede as t2 on t1.id_sede=t2.id_sede where t1.id_cons='$id_cons' $circos order by t1.num_sez";
$res = $dbi->prepare("$sql");
$res->execute();
$max = $res->rowCount();
if(!isset($html)) $html='';
$html = "\n
";
$i=0;$id_circ_old=0;$e=0;
while(list($sez_id, $sez_num) = $res->fetch(PDO::FETCH_NUM)) {
$i++;
/****************************************************************/
/* suddivisione in circoscrizione - attivare se è il caso
$result = mysql_query("SELECT id_circ FROM ".$prefix."_ele_sede where id_cons='$id_cons' and id_sede='$sede_id' ", $dbi);
list($circ_id) = mysql_fetch_row($result);
if($circ_id!=$id_circ_old){
$id_circ_old=$circ_id;
$result2 = mysql_query("SELECT descrizione FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons' and id_circ='$circ_id' ", $dbi);
list($descrizione) = mysql_fetch_row($result2);
echo "
";
echo "\n";
}
*/
#colora la sezione
# verifica se la sezione è scrutinata
$sql="select * from ".$prefix."_ele_voti_".$tab." where id_sez='$sez_id'";
$res2 = $dbi->prepare("$sql");
$res2->execute();
$numero=$res2->rowCount();
if ($numero!=0){$e++;$bgsez="#FFFF00";}else{$bgsez="";}
if ($genere==0) $pos="gruppo_sezione";elseif($genere=='4' || $votog) $pos="lista_sezione";
else $pos="gruppo_sezione";
$html .="$sez_num | ";
if (($i%5) ==0) $html .="
\n";
}
while($i%5!=0) {$i++; $html.=" | ";}
$html .="
\n";
// stampa
if($e!='0'){
echo ""._SEZSCRU."
";
echo "";
echo $html; }
}
?>