[2] | 1 | <?php
|
---|
| 2 | /************************************************************************/
|
---|
| 3 | /* Eleonline - Raccolta e diffusione dei dati elettorali */
|
---|
| 4 | /* by Roberto Gigli & Luciano Apolito */
|
---|
| 5 | /* http://www.eleonline.it */
|
---|
| 6 | /* info@eleonline.it luciano@aniene.net rgigli@libero.it */
|
---|
| 7 | /************************************************************************/
|
---|
| 8 | /* Modulo gruppo */
|
---|
| 9 | /* Amministrazione */
|
---|
| 10 | /************************************************************************/
|
---|
| 11 | if (!defined('ADMIN_FILE')) {
|
---|
| 12 | die ("You can't access this file directly...");
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | // Offset - visualizza il numero di elementi per pagina
|
---|
| 16 | $offset=5;
|
---|
[257] | 17 | global $dbi;
|
---|
[2] | 18 | $aid=$_SESSION['aid'];
|
---|
| 19 | $prefix=$_SESSION['prefix'];
|
---|
| 20 | $currentlang=$_SESSION['lang'];
|
---|
| 21 | $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
|
---|
| 22 | $id_cons_gen=intval($param['id_cons_gen']);
|
---|
| 23 | $perms=ChiSei($id_cons_gen);
|
---|
| 24 | if ($perms<32 or !$id_cons_gen) die("Non hai i permessi per inserire dati, o non hai scelto la consultazione!");
|
---|
| 25 | $id_comune=$_SESSION['id_comune'];
|
---|
[257] | 26 | $sql="SELECT t1.tipo_cons,t2.id_cons FROM ".$prefix."_ele_consultazione as t1, ".$prefix."_ele_cons_comune as t2 where t1.id_cons_gen=t2.id_cons_gen and t2.id_cons_gen='$id_cons_gen' and t2.id_comune='$id_comune' ";
|
---|
| 27 | $res = $dbi->prepare("$sql");
|
---|
| 28 | $res->execute();
|
---|
| 29 | list($tipo_cons,$id_cons) = $res->fetch(PDO::FETCH_NUM);
|
---|
[2] | 30 |
|
---|
| 31 | include("modules/Elezioni/funzionidata.php");
|
---|
| 32 | include("modules/Elezioni/ele.php");
|
---|
| 33 |
|
---|
[344] | 34 | if (isset($param['do'])) $do=addslashes($param['do']); else $do='';
|
---|
[2] | 35 | if (isset($param['min'])) $min=intval($param['min']); else $min=0;
|
---|
| 36 | if (isset($param['id_sede'])) $id_sede=intval($param['id_sede']); else $id_sede='';
|
---|
[344] | 37 | if (isset($param['ok'])) $ok=addslashes($param['ok']); else $ok='';
|
---|
[2] | 38 | if (isset($param['id_circ'])) {$id_circ=intval($param['id_circ']); $_SESSION['id_circ']=$id_circ;} else
|
---|
| 39 | if (isset($_SESSION['id_circ'])) $id_circ=intval($_SESSION['id_circ']); else $id_circ='';
|
---|
| 40 | if (isset($param['id_gruppo'])) $id_gruppo=intval($param['id_gruppo']); else $id_gruppo='';
|
---|
| 41 | if (isset($param['num_gruppo'])) $num_gruppo=intval($param['num_gruppo']); else $num_gruppo='';
|
---|
[344] | 42 | if (isset($param['descr_gruppo'])) $descr_gruppo=addslashes($param['descr_gruppo']); else $descr_gruppo='';
|
---|
| 43 | if (isset($param['simbolo'])) $simbolo=addslashes($param['simbolo']); else $simbolo='';
|
---|
| 44 | if (isset($param['delsimb'])) $delsimb=addslashes($param['delsimb']);
|
---|
| 45 | if (isset($param['delprog'])) $delprog=addslashes($param['delprog']);
|
---|
[2] | 46 | /******************************************************/
|
---|
| 47 | /*Funzione di visualizzazione globale */
|
---|
| 48 | /*****************************************************/
|
---|
| 49 | function all() {
|
---|
[172] | 50 | global $delsimb,$delprog,$tipo_cons,$param,$currentlang, $bgcolor1, $bgcolor2, $prefix, $dbi, $offset, $min, $id_cons,$id_cons_gen,$id_comune,$id_circ,$do,$id_gruppo;
|
---|
[257] | 51 | $sql="SELECT circo FROM ".$prefix."_ele_tipo where tipo_cons='$tipo_cons' and lingua='$currentlang'";
|
---|
| 52 | $res = $dbi->prepare("$sql");
|
---|
| 53 | $res->execute();
|
---|
| 54 | list($cons_circ)= $res->fetch(PDO::FETCH_NUM);
|
---|
[2] | 55 | if($cons_circ)
|
---|
| 56 | {
|
---|
| 57 | echo "<form name=\"circo\" action=\"admin.php\" method=\"post\">";
|
---|
| 58 | echo "<br><table border=\"1\" width=\"50%\" ><tr bgcolor=\"$bgcolor1\"><td>"._SCEGLI_CIRCO.": </td>";
|
---|
[257] | 59 | $sql="SELECT * FROM ".$prefix."_ele_circoscrizione where id_cons='$id_cons'";
|
---|
| 60 | $res = $dbi->prepare("$sql");
|
---|
| 61 | $res->execute();
|
---|
[2] | 62 | echo "<input type=\"hidden\" name=\"pag\" value=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=\">";
|
---|
| 63 | echo "<td><select name=\"id_circ\" onChange=\"top.location.href=this.form.pag.value+this.form.id_circ.options[this.form.id_circ.selectedIndex].value;return false\">";
|
---|
| 64 | echo "<option value=\"\">";
|
---|
[257] | 65 | while($arr=$res->fetch(PDO::FETCH_BOTH)){
|
---|
[2] | 66 | if (!$id_circ) $id_circ=$arr['id_circ'];
|
---|
| 67 | $sel= ($arr['id_circ'] == $id_circ) ? "selected":"";
|
---|
| 68 | echo "<option value=\"".$arr['id_circ']."\" $sel>".$arr['descrizione'];
|
---|
| 69 | }
|
---|
| 70 | echo "</select></td></tr></table></form>";
|
---|
| 71 | }
|
---|
[172] | 72 | echo "<center><font class=\"title\"><b>"._GRUPPO."</b></font><br>";
|
---|
| 73 |
|
---|
| 74 | echo "<table border=\"0\" width=\"100%\"><tr bgcolor=\"$bgcolor1\"><td colspan=\"5\">";
|
---|
| 75 | echo "<form name=\"gruppo2\" enctype=\"multipart/form-data\" action=\"admin.php\" method=\"post\">"
|
---|
| 76 | ."<input type=\"hidden\" name=\"op\" value=\"gruppo\">";
|
---|
| 77 | echo "<table><tr>"
|
---|
[2] | 78 | ."<td align=\"center\"width=\"5%\"><b>"._NUM."</b></td>"
|
---|
| 79 | ."<td align=\"center\"><b>"._DESCR."</b></td>"
|
---|
[172] | 80 | ."<td align=\"center\"width=\"5%\"><b>"._SIMBOLO."</b>";
|
---|
| 81 | if ($do=='modify')
|
---|
| 82 | echo "<br><input type=\"checkbox\" name=\"delsimb\" value=\"false\"> "._DELETE;
|
---|
| 83 | echo "</td>";
|
---|
| 84 |
|
---|
| 85 | if ($tipo_cons!=2) {
|
---|
| 86 | echo "<td align=\"center\"width=\"5%\"><b>"._PROGRAM."</b>";
|
---|
| 87 | if ($do=='modify')
|
---|
| 88 | echo "<br><input type=\"checkbox\" name=\"delprog\" value=\"false\"> "._DELETE;
|
---|
| 89 | echo "</td>";
|
---|
| 90 | }
|
---|
[86] | 91 | echo "<td align=\"center\"><b>"._FUNZIONI."</b></td></tr>";
|
---|
[2] | 92 | //-----------------------visualizza riga superiore per inserimento -
|
---|
[14] | 93 | $circo= $cons_circ==1 ? "and id_circ='$id_circ'":"";
|
---|
[257] | 94 | $sql="SELECT * FROM ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ";
|
---|
| 95 | $res = $dbi->prepare("$sql");
|
---|
| 96 | $res->execute();
|
---|
| 97 | $max = $res->rowCount();
|
---|
[2] | 98 | $nuovo_gruppo=$max+1;
|
---|
[172] | 99 | echo "<tr><td>";
|
---|
[2] | 100 | if ($do=='modify') {
|
---|
[257] | 101 | $sql="SELECT * FROM ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
|
---|
| 102 | $resl = $dbi->prepare("$sql");
|
---|
| 103 | $resl->execute();
|
---|
| 104 | $gru=$resl->fetch(PDO::FETCH_BOTH);
|
---|
[2] | 105 | $nuovo_gruppo=$gru['num_gruppo'];
|
---|
| 106 | echo "<input type=\"hidden\" name=\"do\" value=\"update\">";
|
---|
| 107 | }else{
|
---|
| 108 | $gru['id_gruppo']='';$gru['descrizione']='';
|
---|
| 109 | echo "<input type=\"hidden\" name=\"do\" value=\"add\">";
|
---|
[14] | 110 | }
|
---|
| 111 |
|
---|
[2] | 112 | //-----------------------fine visualizza riga superiore per inserimento -
|
---|
| 113 | echo "<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">"
|
---|
| 114 | ."<input type=\"hidden\" name=\"id_gruppo\" value=\"".$gru['id_gruppo']."\">"
|
---|
[252] | 115 | ."<input type=\"text\" name=\"num_gruppo\" value=\"$nuovo_gruppo\" size=\"3\"></td>";
|
---|
| 116 | #referendum modif 15 aprile 2016 luc
|
---|
| 117 | if($tipo_cons==2) echo "<td><textarea rows=\"7\" cols=\"50\" name=\"descr_gruppo\"> ".$gru['descrizione']."</textarea></td>";
|
---|
| 118 | else echo "<td><input type=\"text\" name=\"descr_gruppo\" value=\"".$gru['descrizione']."\"></td>";
|
---|
| 119 |
|
---|
[86] | 120 | echo "<td><input type=\"file\" name=\"stemma\" size=\"5\"></td>"; //file=$gru[simbolo]
|
---|
| 121 | if ($tipo_cons!=2)
|
---|
[172] | 122 | echo "<td><input type=\"file\" name=\"programma\" size=\"5\">";
|
---|
[2] | 123 | echo "<input type=\"hidden\" name=\"min\" value=\"$min\">";
|
---|
| 124 | echo "<input type=\"hidden\" name=\"id_comune\" value=\"$id_comune\">";
|
---|
| 125 | echo "<input type=\"hidden\" name=\"id_circ\" value=\"$id_circ\">";
|
---|
| 126 | echo "<input type=\"hidden\" name=\"id_cons\" value=\"$id_cons\">"
|
---|
| 127 | ."<input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">"
|
---|
[172] | 128 | ."<input type=\"hidden\" name=\"min\" value=\"$min\"></td>";
|
---|
[2] | 129 | if ($do=='modify')
|
---|
| 130 | echo "<td><input type=\"submit\" name=\"add\" value=\""._MODIFY."\"></td>";
|
---|
| 131 | else
|
---|
| 132 | echo "<td><input type=\"submit\" name=\"add\" value=\""._ADD."\"></td>";
|
---|
[172] | 133 | echo "</tr></table></form>";
|
---|
| 134 | echo "</td></tr>";
|
---|
[2] | 135 |
|
---|
| 136 |
|
---|
[257] | 137 | $sql="SELECT * FROM ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ";
|
---|
| 138 | $res = $dbi->prepare("$sql");
|
---|
| 139 | $res->execute();
|
---|
| 140 | $max = $res->rowCount();
|
---|
| 141 | $sql="select * from ".$prefix."_ele_gruppo where id_cons='$id_cons' $circo ORDER BY num_gruppo LIMIT $min,$offset";
|
---|
| 142 | $result = $dbi->prepare("$sql");
|
---|
| 143 | $result->execute();
|
---|
| 144 | while(list($id_cons2,$id_gruppo,$num_gruppo, $descr_gruppo, $simbolo,,, $prognome) = $result->fetch(PDO::FETCH_NUM)) {
|
---|
| 145 | $sql="select count(0) from ".$prefix."_ele_lista where id_gruppo='$id_gruppo'";
|
---|
| 146 | $restemp = $dbi->prepare("$sql");
|
---|
| 147 | $restemp->execute();
|
---|
| 148 | list($numtemp)=$restemp->fetch(PDO::FETCH_NUM);
|
---|
[2] | 149 | $bgcolor1=($bgcolor1==$_SESSION['bgcolor1'])?$_SESSION['bgcolor2']:$_SESSION['bgcolor1'];
|
---|
| 150 | if (!$simbolo) $simbolo="nulla.jpg";
|
---|
| 151 | echo "<tr bgcolor=\"$bgcolor1\"><td align=\"center\"><b>$num_gruppo</b></td>"
|
---|
| 152 | ."<td align=\"left\"><b>$descr_gruppo</b></td>";
|
---|
| 153 | echo "<td align=\"center\"><b>
|
---|
[175] | 154 | <img src=\"admin.php?op=foto&id_gruppo=$id_gruppo\" width=\"50\" height=\"50\" alt=\"foto\"></b></td>";
|
---|
[86] | 155 | if ($tipo_cons!=2)
|
---|
| 156 | echo "<td>$prognome</td>";
|
---|
| 157 | echo "<td align=\"center\" nowrap>";
|
---|
| 158 | echo "[<a
|
---|
[2] | 159 | href=\"admin.php?op=gruppo&do=modify&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min\"><img src=\"modules/Elezioni/images/edit.gif\"
|
---|
[175] | 160 | border=\"0\" align=\"middle\" alt=\"edit\"> "._EDIT."</a>]";
|
---|
[2] | 161 | if (!$numtemp)
|
---|
[175] | 162 | echo "[<a href=\"admin.php?op=gruppo&do=delete&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&descr_gruppo=$descr_gruppo&min=$min\">"._DELETE." <img src=\"modules/Elezioni/images/delete.gif\" border=\"0\" align=\"middle\" alt=\"delete\"></a>]";
|
---|
[2] | 163 | else
|
---|
[175] | 164 | echo " ["._DELETE." <img src=\"modules/Elezioni/images/delete.gif\" border=\"0\" align=\"middle\" alt=\"delete\">]";
|
---|
[2] | 165 | echo "</td></tr>";
|
---|
| 166 | }
|
---|
| 167 | echo "</table></center>";
|
---|
| 168 |
|
---|
| 169 | // #'Pagina precedente' e 'Pagina Successiva'
|
---|
| 170 |
|
---|
| 171 | echo"<table align=\"center\" width=\"100%\" ><tr>";
|
---|
| 172 | $prev=$min-$offset;
|
---|
| 173 | if ($prev>=0) {
|
---|
| 174 | echo "<td colspan=\"5\" align=\"center\" bgcolor=\"$bgcolor1\"><a href=\"admin.php?op=gruppo&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_comune=$id_comune&min=$prev\">";
|
---|
| 175 | echo "<b>$offset "._PREV_MATCH."</b></a></td>";
|
---|
| 176 | }
|
---|
| 177 |
|
---|
| 178 | $next=$min+$offset;
|
---|
| 179 | if ($next>=($offset-1)) {
|
---|
| 180 | if($next>=$max) $next = $max;
|
---|
| 181 | else {
|
---|
| 182 | echo "<td colspan=\"5\" align=\"center\" bgcolor=\"$bgcolor1\"><a href=\"admin.php?op=gruppo&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&min=$next\">";
|
---|
| 183 | echo "<b>$offset "._NEXT_MATCH."</b></a></td>";
|
---|
| 184 | }
|
---|
| 185 | }
|
---|
| 186 | echo "</tr></table><br>";
|
---|
| 187 |
|
---|
| 188 | }
|
---|
| 189 |
|
---|
| 190 | //***********************************************************
|
---|
| 191 | //Funzione di inserimento e gestione dei gruppi
|
---|
| 192 | //************************************************************
|
---|
| 193 |
|
---|
| 194 | function gruppo($ok, $do,$id_gruppo,$num_gruppo,$descr_gruppo, $simbolo,$id_circ) {
|
---|
[172] | 195 | global $delsimb,$delprog,$prefix, $dbi, $id_cons,$simbolo2,$genere,$id_cons_gen,$id_comune,$min;
|
---|
[2] | 196 | $aid=$_SESSION['aid'];
|
---|
| 197 | $perms=ChiSei($id_cons_gen);
|
---|
| 198 | if ($perms >16) {
|
---|
| 199 | if ($do == "delete") {
|
---|
[257] | 200 | if ($ok !="1") {
|
---|
[2] | 201 | ele();
|
---|
| 202 | echo "<center><br><br>"._DOMCANCELLA." "._GRUPPO." $descr_gruppo ?<br>";
|
---|
[87] | 203 | echo "[ <a href=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ\">"._NO."</a> ] - [<a href=\"admin.php?op=gruppo&do=delete&id_gruppo=$id_gruppo&id_cons_gen=$id_cons_gen&id_comune=$id_comune&min=$min&ok=1\">"._YES."</a> ]";exit;
|
---|
[257] | 204 | }else{
|
---|
| 205 | $sql="select id_lista from ".$prefix."_ele_lista where id_gruppo='$id_gruppo'";
|
---|
| 206 | $reslis = $dbi->prepare("$sql");
|
---|
| 207 | $reslis->execute();
|
---|
| 208 | while (list($idlst)=$reslis->fetch(PDO::FETCH_NUM)){
|
---|
| 209 | $sql="select id_cand from ".$prefix."_ele_candidato where id_lista='$idlst'";
|
---|
| 210 | $rescan = $dbi->prepare("$sql");
|
---|
| 211 | $rescan->execute();
|
---|
| 212 | while (list($idcnd)=$rescan->fetch(PDO::FETCH_NUM)){
|
---|
| 213 | $sql="delete from ".$prefix."_ele_voti_candidati where id_cand='$idcnd'";
|
---|
| 214 | $res = $dbi->prepare("$sql");
|
---|
| 215 | $res->execute();
|
---|
| 216 | $sql="delete from ".$prefix."_ele_candidati where id_cand='$idcnd'";
|
---|
| 217 | $res = $dbi->prepare("$sql");
|
---|
| 218 | $res->execute();
|
---|
| 219 | }
|
---|
| 220 | $sql="delete from ".$prefix."_ele_voti_lista where id_lista='$idlst'";
|
---|
| 221 | $res = $dbi->prepare("$sql");
|
---|
| 222 | $res->execute();
|
---|
| 223 | $sql="delete from ".$prefix."_ele_lista where id_lista='$idlst'";
|
---|
| 224 | $res = $dbi->prepare("$sql");
|
---|
| 225 | $res->execute();
|
---|
[101] | 226 | }
|
---|
[257] | 227 | $sql="delete from ".$prefix."_ele_voti_gruppo where id_gruppo='$id_gruppo'";
|
---|
| 228 | $res = $dbi->prepare("$sql");
|
---|
| 229 | $res->execute();
|
---|
| 230 | $sql="delete from ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
|
---|
| 231 | $res = $dbi->prepare("$sql");
|
---|
| 232 | $res->execute();
|
---|
| 233 | if (!$result) return;
|
---|
[2] | 234 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 235 | }
|
---|
| 236 | } elseif ($do == "add") {
|
---|
| 237 | if ($descr_gruppo) {
|
---|
| 238 | $stemmablob='';
|
---|
| 239 | $stemmanome='';
|
---|
| 240 | $STEMM=$_FILES['stemma'];
|
---|
| 241 | $filestemma=$STEMM['tmp_name'];
|
---|
| 242 | $nomestemma=$STEMM['name'];
|
---|
| 243 | if ($filestemma){
|
---|
| 244 | $fdstemma = fopen ("$filestemma", "rb");
|
---|
| 245 | $stemmacontents = fread ($fdstemma, filesize ("$filestemma"));
|
---|
| 246 | fclose ($fdstemma);
|
---|
| 247 | $stemmablob=addslashes($stemmacontents);
|
---|
| 248 | $stemmanome=addslashes($nomestemma);
|
---|
| 249 | }
|
---|
[86] | 250 |
|
---|
| 251 | $progblob='';
|
---|
| 252 | $prognome='';
|
---|
| 253 | $PROG=$_FILES['programma'];
|
---|
| 254 | $fileprog=$PROG['tmp_name'];
|
---|
| 255 | $nomeprog=$PROG['name'];
|
---|
| 256 | if ($fileprog){
|
---|
| 257 | $fdprog = fopen ("$fileprog", "rb");
|
---|
| 258 | $progcontents = fread ($fdprog, filesize ("$fileprog"));
|
---|
| 259 | fclose ($fdprog);
|
---|
| 260 | $progblob=addslashes($progcontents);
|
---|
| 261 | $prognome=addslashes($nomeprog );
|
---|
| 262 | }
|
---|
[257] | 263 | $sql="insert into ".$prefix."_ele_gruppo (id_cons,id_gruppo,num_gruppo,descrizione,simbolo,stemma,id_circ,prognome,programma) values ('$id_cons','$id_gruppo','$num_gruppo','$descr_gruppo','$stemmanome','$stemmablob','$id_circ','$prognome','$progblob')";
|
---|
| 264 | $result = $dbi->prepare("$sql");
|
---|
| 265 | $result->execute();
|
---|
| 266 | if (!$result->rowCount()) return;
|
---|
[2] | 267 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 268 | } else {
|
---|
| 269 | ele();
|
---|
| 270 | OpenTable();
|
---|
| 271 | echo "<center>"._GESTIONE." "._GRUPPO." ";
|
---|
[87] | 272 | echo "<br><br><a href=\"admin.php?op=gruppo&id_cons_gen=$id_cons_gen&min=$min\">"._IMM." "._GRUPPO."</a></center>";
|
---|
[2] | 273 | CloseTable();
|
---|
| 274 | }
|
---|
| 275 | } elseif ($do == "update") {
|
---|
[86] | 276 | $progblob='';
|
---|
| 277 | $prognome='';
|
---|
| 278 | $PROG=$_FILES['programma'];
|
---|
| 279 | $fileprog=$PROG['tmp_name'];
|
---|
| 280 | $nomeprog=$PROG['name'];
|
---|
| 281 | if ($fileprog){
|
---|
| 282 | $fdprog = fopen ("$fileprog", "rb");
|
---|
| 283 | $progcontents = fread ($fdprog, filesize ("$fileprog"));
|
---|
| 284 | fclose ($fdprog);
|
---|
| 285 | $progblob=addslashes($progcontents);
|
---|
| 286 | $prognome=addslashes($nomeprog );
|
---|
| 287 | $cond=", prognome='$prognome', programma='$progblob'";
|
---|
[172] | 288 | } else {
|
---|
| 289 | if ( $delprog=='false') $cond=", prognome='', programma=''";
|
---|
| 290 | else $cond='';
|
---|
| 291 | }
|
---|
[86] | 292 |
|
---|
| 293 |
|
---|
| 294 |
|
---|
[2] | 295 | $stemmablob='';
|
---|
| 296 | $stemmanome='';
|
---|
| 297 | $STEMM=$_FILES['stemma'];
|
---|
| 298 | $filestemma=$STEMM['tmp_name'];
|
---|
| 299 | $nomestemma=$STEMM['name'];
|
---|
| 300 | if ($filestemma){
|
---|
| 301 | $fdstemma = fopen ("$filestemma", "rb");
|
---|
| 302 | $stemmacontents = fread ($fdstemma, filesize ("$filestemma"));
|
---|
| 303 | fclose ($fdstemma);
|
---|
| 304 | $stemmablob=addslashes($stemmacontents);
|
---|
| 305 | $stemmanome=addslashes($nomestemma);
|
---|
[86] | 306 | $cond2=", simbolo='$stemmanome', stemma='$stemmablob'";
|
---|
[172] | 307 | } else {
|
---|
| 308 | if ( $delsimb=='false') $cond2=", simbolo='', stemma=''";
|
---|
| 309 | else $cond2='';
|
---|
| 310 | }
|
---|
[257] | 311 | $sql="update ".$prefix."_ele_gruppo set num_gruppo='$num_gruppo' , descrizione='$descr_gruppo' $cond $cond2 where id_gruppo='$id_gruppo' ";
|
---|
| 312 | $result = $dbi->prepare("$sql");
|
---|
| 313 | $result->execute();
|
---|
[2] | 314 | Header("Location: admin.php?op=gruppo&id_cons_gen=$id_cons_gen&id_circ=$id_circ&min=$min");
|
---|
| 315 | }
|
---|
| 316 |
|
---|
| 317 | }
|
---|
| 318 | }
|
---|
| 319 |
|
---|
| 320 | if ($do and $do!="modify")
|
---|
| 321 | gruppo($ok, $do,$id_gruppo,$num_gruppo,$descr_gruppo,$simbolo, $id_circ);
|
---|
| 322 | ele();
|
---|
| 323 | all();
|
---|
| 324 | echo"</td></tr></table>";
|
---|
| 325 | include("footer.php");
|
---|
| 326 |
|
---|
| 327 |
|
---|
| 328 |
|
---|
| 329 |
|
---|
| 330 | ?>
|
---|