Changeset 105 for trunk/client/modules/Elezioni/crea_pagina.php
- Timestamp:
- May 29, 2011, 7:05:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/crea_pagina.php
r104 r105 21 21 22 22 global $prefix,$dbi,$pdf,$csv,$xls,$lang,$descr_cons,$prefix,$dbi,$id_comune,$descrizione,$siteistat,$min,$offset,$minsez,$offsetsez,$datipdf; 23 $res = mysql_query("SELECT descrizione FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi);24 list($descr_com ) = mysql_fetch_row($res);23 $res = mysql_query("SELECT descrizione,simbolo,stemma FROM ".$prefix."_ele_comuni where id_comune='$id_comune' ", $dbi); 24 list($descr_com,$simbolo,$stemma) = mysql_fetch_row($res); 25 25 26 26 … … 236 236 237 237 238 239 240 241 242 243 $style .="<table style=\"margin: auto;\" cellspace=0 border=0 cellpadding=0><tr><td border=0> <img src=\"modules/Elezioni/images/logo.gif\" align=\"left\" /></td> ";238 # salva sull'hardisk lo stemma del comune 239 $logo=verificasimbolo(); 240 $immagine= "<img src=\"modules/Elezioni/images/$logo\" alt=\"logo\" align=\"left\"/>"; 241 242 243 $style .="<table style=\"margin: auto;\" cellspace=0 border=0 cellpadding=0><tr><td border=0>$immagine</td> "; 244 244 245 245 $style .= "<td border=0>$datipdf</td></tr></table><br/><br/>"; … … 254 254 $nomefile=str_replace(" ", "_",$nomefile); 255 255 // conversion HTML => PDF 256 257 require_once('inc/hpdf /html2pdf.class.php');256 //$nomefile="elezioni_tabelle.pdf"; 257 require_once('inc/hpdf403/html2pdf.class.php'); 258 258 $html2pdf = new HTML2PDF('L','A4', 'it'); 259 259 $html2pdf->WriteHTML($style, isset($_GET['vuehtml']));
Note:
See TracChangeset
for help on using the changeset viewer.