PACCHETTI, PROMOZIONI, NEWS ED EVENTITutte le iniziative di Hotel Giglo e del territorio, per non lasciarsi scappare proprio niente!
$query = "SELECT * FROM cms_notizie2012 WHERE attiva LIKE 'Si' ORDER BY ordine DESC ";
$result = mysql_query($query);
if (!$result) {die(mysql_error());}
$num = mysql_num_rows($result);
for($i=0;$i< $num;$i++){
$row = mysql_fetch_array($result);
$thisid = $row['id'];
$thistitolo = $row['titolo'];
$thissottotitolo = $row['sottotitolo'];
$thistesto = klinex($row['testo']);
$thisfoto = $row['foto'];
if ($thisfoto!="") {
$xml .= '
';
$xml .= '
';
$xml .= '
';
$xml .= '
';
}
$xml .= '
';
$xml .= $thistitolo;
$xml .= '';
$xml .= $thissottotitolo;
$xml .= '';
$xml .= '
';
$xml .= '
';
$xml .= $thistesto;
$xml .= '
';
if ($i< $num-1) {
$xml .= '
';
}
}
echo $xml;
if ($num==0) {
?>
Al momento non sono presenti promozioni o iniziative.
}
?>