prepare("$sql");
$res->execute();
list($descr_com,$simbolo,$stemma) = $res->fetch(PDO::FETCH_NUM);
$datipdf=stripslashes($datipdf);
$data=date("d-m-y G:i");
if ($xls==1) {
$nomefile=strip_tags(str_replace(array('"', "'", ' ', ','), "_", $datipdf).".xls");
# $nomefile=$_SESSION['nomefile'].".xls";
header ("Content-Type: application/vnd.ms-excel");
header ("Content-Disposition: inline; filename=$nomefile");
$datipdf=str_replace("
","\n",$datipdf);
$datipdf=strip_tags($datipdf);
// $cella=str_replace(""," ",$cella);
// $cella=str_replace("
"," ",$cella);
echo "$datipdf";
$y=1;$i='';$e='';
foreach ($ar as $riga) {
$e++;
if($y) {
echo "\n";
}else{
echo "\n";
}
foreach ($riga as $cella) {
$cella=str_replace(""," ",$cella);
$cella=str_replace(""," ",$cella);
$cella=str_replace("
"," ",$cella);
$cella=str_replace("
"," ",$cella);
$cella=str_replace(""," - ",$cella);
$cella=str_replace(""," - ",$cella);
$cella=str_replace("%","%",$cella);
$cella=str_replace("","",$cella);
$cella=str_replace("_CIRCOS","Circoscrizione ",$cella);
$cella=str_replace("_SEZIONI","Sezione ",$cella);
$cella=str_replace("_TOT","Totale",$cella);
$cella=str_replace("_COMPLESSIVO","Complessivo",$cella);
echo "$cella \t";
}
if ($y) $y=0;
}
echo"\n\n\nPowered by Eleonline http://www.eleonline.it \t \n";
echo"by luciano apolito & roberto gigli - stampato: $data \t \n";
die();
}else{
$bg='bgw';
$tmpbg='bggray2';
$tmpbg1='bgw';
$tmpbg2='bggray';
$tmpbg3='bggray2';
$html ='';
if ($pdf!="1" && $csv=="1")
{
$html .="
";
$html .= " | $datipdf |
";
}
$html .= "";
$y=1;$i='';$e='';
foreach ($ar as $riga) {
$e++;
if($y) {
$html .= "";
}else{
$bg= ($bg==$tmpbg) ? $tmpbg1:$tmpbg3;
$html .= "
";
$i="class=\"td-130c\"";
}
foreach ($riga as $cella) {
$cella=str_replace("_CIRCOS","Circoscrizione ",$cella);
$cella=str_replace("_SEZIONI","Sezione ",$cella);
$cella=str_replace("_TOT","Totale",$cella);
$cella=str_replace("_COMPLESSIVO","",$cella);
if ($e==1){
$t="";
}else{
$t=" | ";
}
$html .= "$t $i>$cella $f";
$i='';
}
if ($y) $y=0;
$html .= " |
";
}
$html .= "
";
if ($pdf!="1" && $csv=="1"){
$html .="
Stampato: $data";
$html .="
Eleonline by luciano apolito & roberto gigli - www.eleonline.it";
$html .="
";
}
# inizio stampa a video o pdf
if ($pdf!='1'){
echo $html;
}else{
$style ="
";
# salva sull'hardisk lo stemma del comune
$logo=verificasimbolo();
$immagine= "";
$style .="$immagine | ";
$style .= "$datipdf |
";
$style .= "";
$style .= "";
$data=date("d-m-y G:i");
$style .=" Stampato il $data";
$style .=" Eleonline by luciano apolito & roberto gigli - www.eleonline.it";
$style .=" |
";
$nomefile=strip_tags($datipdf).".pdf";
# $nomefile=$_SESSION['nomefile'].".pdf";
$nomefile=str_replace(" ", "_",$nomefile);
// conversion HTML => PDF
//$nomefile="elezioni_tabelle.pdf";
//$orienta="P";
$html2pdf = new Html2Pdf($orienta,$formato, 'it');
$html2pdf->WriteHTML($style, isset($_GET['vuehtml']));
$html2pdf->Output($nomefile);
}
}
}
?>