Changeset 336 for trunk/admin/modules/Elezioni/importa.php
- Timestamp:
- Sep 23, 2020, 11:32:27 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/importa.php
r334 r336 278 278 include("footer.php"); 279 279 280 281 282 283 284 285 286 287 288 289 290 /* 291 foreach ($ar_gruppo as $rigagruppo){ 292 $newidg=0; 293 $oldidg=0; 294 foreach($rigagruppo as $key=>$campo){ 295 if ($key==0) $valori="'$idcns',"; 296 elseif ($key==1) {$valori.= "null"; $oldidg=$campo;} 297 elseif ($key==6) $valori.= ",0"; 298 else $valori.= ",'$campo'"; 299 if ($key==2) $numgruppo= $campo; 300 } 301 if(isset($valori)){ 302 $res_gruppo = mysql_query("insert into ".$prefix."_ele_gruppo values($valori)" ,$dbi)||die("(1104) Non e' stato possibile inserire i gruppi nel database! contattare l'amministratore".mysql_error()); 303 $resnew = mysql_query("select id_gruppo from ".$prefix."_ele_gruppo where num_gruppo='$numgruppo' and id_cons='$idcns'" ,$dbi); 304 list ($newidg) = mysql_fetch_row($resnew); 305 unset($valori); 306 foreach ($ar_lista as $rigalista){ 307 $oldidl=0; 308 foreach($rigalista as $key=>$campo){ 309 if ($key==0) $valori="'$idcns',"; 310 elseif ($key==1) {$valori.= "null";$oldidl=$campo;} 311 elseif ($key==3) {$valori.= ",'$newidg'"; if ($campo!=$oldidg) $okl=1;} 312 elseif ($key==4) $valori.= ",0"; 313 else $valori.= ",'$campo'"; 314 if ($key==2) $numlista= $campo; 315 } 316 if(isset($valori)){ 317 if ($okl) {$okl=0;continue;} 318 $res_lista = mysql_query("insert into ".$prefix."_ele_lista values($valori)" ,$dbi)||die("(1104) Non e' stato possibile inserire le liste nel database! contattare l'amministratore".mysql_error()); 319 $reslnew = mysql_query("select id_lista from ".$prefix."_ele_lista where num_lista='$numlista' and id_cons='$idcns'" ,$dbi); 320 list ($newidl) = mysql_fetch_row($reslnew); 321 unset($valori); 322 foreach ($ar_candi as $rigacandi){ 323 foreach($rigacandi as $key=>$campo){if (count($rigacandi)!=8) {unset($valori);continue;} 324 if ($key==0) $valori= "null,"; 325 elseif ($key==1) $valori.="'$idcns',"; 326 elseif ($key==2) {$valori.= "'$newidl'"; if ($campo!=$oldidl) $okc=1;} 327 else $valori.= ",'$campo'"; 328 } 329 if(isset($valori)){ 330 if ($okc) {$okc=0;continue;} 331 $res_lista = mysql_query("insert into ".$prefix."_ele_candidati values($valori)" ,$dbi)||die("(1104) Non e' stato possibile inserire i candidati nel database! contattare l'amministratore".mysql_error()); 332 } 333 } 334 } 335 } 336 } 337 } 338 */ 280 339 281 340 282 ?>
Note:
See TracChangeset
for help on using the changeset viewer.