Changeset 254 for trunk/client/modules/Elezioni/blocchi/cerca_candidato.php
- Timestamp:
- Mar 13, 2018, 9:26:23 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/blocchi/cerca_candidato.php
r238 r254 13 13 die ("You can't access this file dirrectly..."); 14 14 } 15 global $id_comune; 15 16 16 17 # validatore form … … 34 35 <form method="post" name="form_candi" action="" onsubmit="return validateForm()" > 35 36 Inserisci il cognome o/e il nome intero del candidato da cercare<br/> 36 <input type="text" name="cognome" maxlength="30" size="10" value=""> 37 <input type="submit" value="Cerca"> 37 <input type="text" name="cognome" maxlength="30" size="10" value="">'; 38 echo "<input type=\"hidden\" name=\"id_comune\" value=\"$id_comune\">"; 39 echo '<input type="submit" value="Cerca"> 38 40 </form> 39 41 </div> 40 42 '; 41 43 42 $cerca_cand=$_SESSION['cerca_cand']; 44 if(isset($_SESSION['cerca_cand'])) $cerca_cand=$_SESSION['cerca_cand']; else $cerca_cand=""; 43 45 echo $cerca_cand; 44 46 $_SESSION['cerca_cand']=''; … … 66 68 } 67 69 68 $sql_cand= mysql_query("SELECT * FROM ".$prefix."_ele_candidati where ( cognome like '%$cognome%' $numeratore nome like '%$nome%') OR (cognome like '%$nome%'69 $numeratore nome like '%$cognome%') ", $dbi);70 $num_tot = mysql_num_rows($sql_cand); 71 $res = mysql_query("SELECT * FROM ".$prefix."_ele_candidati where ( cognome like '%$cognome%' $numeratore nome like '%$nome%') OR (cognome like '%$nome%' $numeratore nome like '%$cognome%')ORDER BY id_cand DESC LIMIT 0,7", $dbi);70 $sql_cand= mysql_query("SELECT * FROM ".$prefix."_ele_candidati where ((cognome like '%$cognome%' $numeratore nome like '%$nome%') OR (cognome like '%$nome%' 71 $numeratore nome like '%$cognome%')) and id_cons in(select id_cons from ".$prefix."_ele_cons_comune where id_comune='$id_comune')", $dbi); 72 $num_tot = mysql_num_rows($sql_cand); 73 $res = mysql_query("SELECT * FROM ".$prefix."_ele_candidati where ((cognome like '%$cognome%' $numeratore nome like '%$nome%') OR (cognome like '%$nome%' $numeratore nome like '%$cognome%')) and id_cons in(select id_cons from ".$prefix."_ele_cons_comune where id_comune='$id_comune') ORDER BY id_cand DESC LIMIT 0,7", $dbi); 72 74 while (list($id_cand,$id_cons2,$id_lista,$cognome,$nome,$note,$simbolo,$num_candidato) = mysql_fetch_row($res)) { 73 75 $res1 = mysql_query("SELECT id_cons_gen FROM ".$prefix."_ele_cons_comune where id_cons='$id_cons2'" , $dbi);
Note:
See TracChangeset
for help on using the changeset viewer.