include ('top.php'); include ('admin/config.php'); $testo="Al momento questa sezione è vuota."; $sql="select * from ".$news." where (lingua='it' and (tipo='offerte' or tipo='lastminute'))"; if(!($result=mysql_query($sql,$conn))) { echo ("Error selecting data from NEWS table.\n"); }else{ while ($datarecord=mysql_fetch_row ($result)) { if (time()>$datarecord[9]) {continue;} if (time()<$datarecord[10]) {continue;} $testo=''; } } ?>
/*$tempo=time()-186423;$data=date("d/m/Y",$tempo);echo "Gli eventi del mese Le principali manifestazioni della zona Aggiornato il $data \n";*/ $sql="select * from ".$news." where (lingua = 'it') order by id_news";if(!($result=mysql_query($sql,$conn))) { echo ("Error selecting data from NEWS table.\n"); }else{ if (mysql_num_rows($result)==0) { echo "$testo"; } while ($datarecord=mysql_fetch_row ($result)) { if (time()<$datarecord[8]) {continue;} if (time()>$datarecord[9]) {continue;} $data=date("d/m/Y G.i:s",$datarecord[1]); $cod=$datarecord[0]; echo "$datarecord[2] ".stripslashes(str_replace("\n", " ", $datarecord[3]))." Aggiornato il: ".$data." |
\n"; } } ?> |