Changeset 347 for trunk/client/modules/Elezioni/blocchi/cerca_candidato.php
- Timestamp:
- May 14, 2021, 2:00:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/modules/Elezioni/blocchi/cerca_candidato.php
r344 r347 8 8 /* widget cerca candidato 9 9 by luciano apolito 2015 */ 10 11 10 # http://localhost/ele3/trunk/client/modules.php?cognome=vince&id_comune=58047&op=gruppo&name=Elezioni&file=index&id_cons_gen=66 11 # http://localhost/ele3/trunk/client/modules.php?op=gruppo&name=Elezioni&id_comune=58047&file=index&id_cons_gen=66 12 12 if (!defined('MODULE_FILE')) { 13 13 die ("You can't access this file dirrectly..."); 14 14 } 15 global $id_comune ;15 global $id_comune,$id_cons_gen,$op; 16 16 17 17 # validatore form 18 18 echo ' 19 <script type="text/javascript">19 <script> 20 20 function validateForm() 21 21 { … … 31 31 32 32 # form 33 echo ' 33 #$url=$_SERVER['REQUEST_URI']; // url della pagina per il reload 34 35 echo " 34 36 <div><h5>Cerca il candidato</h5> 35 <form method= "post" name="form_candi" action="" onsubmit="return validateForm()">37 <form method=\"get\" name=\"form_candi\" action=\"modules.php\" onsubmit='return validateForm()' > 36 38 Inserisci il cognome o/e il nome intero del candidato da cercare<br/> 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">39 <input type=\"text\" name=\"cognome\" maxlength=\"30\" size=\"10\" value=\"\">"; 40 echo "<input type=\"hidden\" name=\"id_comune\" value=\"$id_comune\"><input type=\"hidden\" name=\"op\" value=\"$op\"><input type=\"hidden\" name=\"name\" value=\"Elezioni\"><input type=\"hidden\" name=\"file\" value=\"index\"><input type=\"hidden\" name=\"id_cons_gen\" value=\"$id_cons_gen\">"; 41 echo "<input type=\"submit\" value=\"Cerca\"> 40 42 </form> 41 43 </div> 42 '; 43 44 if(isset($_SESSION['cerca_cand'])) $cerca_cand=$_SESSION['cerca_cand']; else $cerca_cand=""; 45 echo $cerca_cand; 46 $_SESSION['cerca_cand']=''; 44 "; 47 45 48 46 49 $url=$_SERVER['REQUEST_URI']; // url della pagina per il reload 47 48 50 49 51 50 $param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST; 52 51 if (isset($param['cognome'])) $cognome=addslashes($param['cognome']); else $cognome=''; 53 52 $chiave="$cognome"; 54 global $id_comune;55 53 $cerca_cand=""; 54 $_SESSION['cerca_cand']=''; 56 55 57 56 if($cognome!=''){ … … 101 100 $sezioni=$res4->rowCount(); 102 101 $cerca_cand .= "<div style=\"text-align:left\"><hr/>"; 103 $cerca_cand .= "<img src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista\" width=\"30\" heigth=\"30\" align=\"left\">";102 $cerca_cand .= "<img src=\"modules.php?name=Elezioni&file=foto&id_lista=$id_lista\" alt=\"foto\" style=\"width:30px; text-align:left;\">"; 104 103 105 104 if($tipo_consul!='4'){ // non Ú circoscrizione … … 117 116 118 117 $_SESSION['cerca_cand']=$cerca_cand; 119 header("location:$url");118 # header("location:$url"); 120 119 //$cognome=''; 121 120 } 122 121 if(isset($_SESSION['cerca_cand'])) $cerca_cand=$_SESSION['cerca_cand']; else $cerca_cand=""; 122 echo $cerca_cand; 123 $_SESSION['cerca_cand']=''; 123 124 124 125
Note:
See TracChangeset
for help on using the changeset viewer.