Ignore:
Timestamp:
May 14, 2021, 2:00:23 PM (4 years ago)
Author:
roby
Message:

Aggiornamento per compatibilità con php7.4

Location:
trunk/client/modules/Elezioni/blocchi
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/modules/Elezioni/blocchi/02_risultati.php

    r228 r347  
    2121    echo "<table>";
    2222    for($x=0;$x<count($gruppo);$x++){
    23         echo "<tr><td><strong><big>&middot;</big></strong></td><td>".$gruppo[$x]." </td><td  align=\"right\"><b><span style=\"color:#ff0000;\">".$pro[$x] ."%</span></b></td></tr>\n";
     23        echo "<tr><td class=\"td-big\">&middot;</td><td>".$gruppo[$x]." </td><td  style=\"text-align:right\"><b><span style=\"color:#ff0000;\">".$pro[$x] ."%</span></b></td></tr>\n";
    2424    }
    2525    echo "</table>";
  • trunk/client/modules/Elezioni/blocchi/04_sezioni.php

    r265 r347  
    7474                        else $pos="gruppo_sezione";
    7575                       
    76                         $html .="<td style=\"margin:0px auto; text-align:center; width:5%;\" bgcolor=\"$bgsez\"><a href=\"modules.php?id_cons_gen=$id_cons_gen&name=Elezioni&id_comune=$id_comune&perc=true&file=index&op=$pos&minsez=$sez_num&offsetsez=$sez_num\"><b>$sez_num</b></a></td>";
     76                        $html .="<td style=\"margin:0px auto; text-align:center; width:5%;background-color:$bgsez;\" ><a href=\"modules.php?id_cons_gen=$id_cons_gen&amp;name=Elezioni&amp;id_comune=$id_comune&amp;perc=true&amp;file=index&amp;op=$pos&amp;minsez=$sez_num&amp;offsetsez=$sez_num\"><b>$sez_num</b></a></td>";
    7777
    7878                        if (($i%5) ==0) $html .="</tr>\n<tr>";
    7979                }
    80                
     80                while($i%5!=0) {$i++; $html.="<td></td>";}
    8181                $html .="</tr></table>\n";
    8282    // stampa
    8383    if($e!='0'){
    8484          echo "<div><h5>"._SEZSCRU."</h5></div>";
    85           echo "<center> <img  alt=\"Grafico\" src=\"modules/Elezioni/grafici/ledex2.php?sez=$e&max=$max\" /></center>";
     85          echo "<img style=\"display:block;margin:0px auto;text-align:center;\" alt=\"Grafico\" src=\"modules/Elezioni/grafici/ledex2.php?sez=$e&amp;max=$max\" />";
    8686           
    8787    echo $html; }       
  • trunk/client/modules/Elezioni/blocchi/bar_affluenze.php

    r279 r347  
    8282
    8383
    84                         echo "<center><img src=\"http://chart.apis.google.com/chart?
    85                         chs=160x160
    86                         &cht=bvs
    87                         &chd=t:0,$perc,0
    88                         &chxt=y
    89                         &chco=
    90                         &chl=|$perc% |\"
    91                        
    92                         alt=\"Sample chart\" />
    93                        
    94                          <br/><a href=\"modules.php?id_cons_gen=$id_cons_gen&name=Elezioni&id_comune=$id_comune&file=index&op=affluenze_graf\">Tutte le affluenze</a>
    95                         </center>";
     84                        echo "<img style=\"display:block;margin:0px auto;text-align:center;\" src=\"http://chart.apis.google.com/chart?chs=160x160&ampcht=bvs&ampchd=t:0,$perc,0&ampchxt=y&ampchco=&ampchl=|$perc% |\" alt=\"Sample chart\" /><br/><a href=\"modules.php?id_cons_gen=$id_cons_gen&name=Elezioni&id_comune=$id_comune&file=index&op=affluenze_graf\">Tutte le affluenze</a>";
    9685
    9786
  • trunk/client/modules/Elezioni/blocchi/cerca_candidato.php

    r344 r347  
    88/* widget cerca candidato
    99  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
    1212if (!defined('MODULE_FILE')) {
    1313    die ("You can't access this file dirrectly...");
    1414}
    15 global $id_comune;
     15global $id_comune,$id_cons_gen,$op;
    1616
    1717# validatore form
    1818echo '
    19  <script type="text/javascript">
     19 <script>
    2020function validateForm()
    2121        {
     
    3131
    3232# form
    33 echo '
     33#$url=$_SERVER['REQUEST_URI']; // url della pagina per il reload
     34
     35echo "
    3436                <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()' >
    3638                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=\"\">";
     40echo "<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\">";
     41echo    "<input type=\"submit\" value=\"Cerca\">
    4042                </form>
    4143                </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";
    4745
    4846
    49 $url=$_SERVER['REQUEST_URI']; // url della pagina per il reload
     47
     48
    5049
    5150$param=strtolower($_SERVER['REQUEST_METHOD']) == 'get' ? $_GET : $_POST;
    5251if (isset($param['cognome'])) $cognome=addslashes($param['cognome']); else $cognome='';
    5352$chiave="$cognome";
    54 global $id_comune;
    55 
     53$cerca_cand="";
     54$_SESSION['cerca_cand']='';
    5655
    5756if($cognome!=''){
     
    101100                $sezioni=$res4->rowCount();
    102101                $cerca_cand .= "<div style=\"text-align:left\"><hr/>";
    103                 $cerca_cand .= "<img src=\"modules.php?name=Elezioni&amp;file=foto&amp;id_lista=$id_lista\" width=\"30\" heigth=\"30\" align=\"left\">";
     102                $cerca_cand .= "<img src=\"modules.php?name=Elezioni&amp;file=foto&amp;id_lista=$id_lista\" alt=\"foto\" style=\"width:30px; text-align:left;\">";
    104103
    105104                if($tipo_consul!='4'){ // non Ú circoscrizione
     
    117116
    118117        $_SESSION['cerca_cand']=$cerca_cand;
    119         header("location:$url ");
     118#       header("location:$url");
    120119        //$cognome='';
    121120}
    122 
     121if(isset($_SESSION['cerca_cand'])) $cerca_cand=$_SESSION['cerca_cand']; else $cerca_cand="";
     122echo $cerca_cand;
     123$_SESSION['cerca_cand']='';
    123124
    124125
  • trunk/client/modules/Elezioni/blocchi/social.php

    r233 r347  
    1717 
    1818<!-- Facebook -->
    19 <a href=\"http://www.facebook.com/sharer.php?t=modules/Elezioni/images/$simbolo&u=$url\" target=\"_blank\"><img src=\"modules/Elezioni/images/facebook.png\" alt=\"Facebook\" /></a>
     19<a href=\"http://www.facebook.com/sharer.php?t=modules/Elezioni/images/$simbolo&amp;u=$url\" target=\"_blank\"><img src=\"modules/Elezioni/images/facebook.png\" alt=\"Facebook\" /></a>
    2020 
    2121
     
    2323
    2424<!-- Twitter -->
    25 <a href=\"http://twitter.com/share?url=$url&text=$descr_com $descr_cons&hashtags=Eleonline\" target=\"_blank\"><img src=\"modules/Elezioni/images/twitter.png\" alt=\"Twitter\" /></a>
     25<a href=\"http://twitter.com/share?url=$url&amp;text=$descr_com $descr_cons&amp;hashtags=Eleonline\" target=\"_blank\"><img src=\"modules/Elezioni/images/twitter.png\" alt=\"Twitter\" /></a>
    2626 
    2727
Note: See TracChangeset for help on using the changeset viewer.