include("inc/header.php"); ?>
include("inc/header_news.php"); ?>
include ("/admin/phpdatasource.inc");
include("/admin/phpfunctions.inc");
?>
Le News di Piemme Arredamenti...
if (!isset($numc))
{
$numc=10;
$begin=0;
}
if (!isset($pagina)) $pagina=1;
// Serve solo per contare il numero totale di news
$sqlnum="SELECT * from news";
$result_num= mysql_query($sqlnum,$db);
$tot_ricerca=mysql_num_rows($result_num);
if ($tot_ricerca > 0)
{
// ci sono news
$num_pagine=ceil($tot_ricerca / $numc);
// Se la pagina è la 1 partiamo da 0
$begin=($pagina-1) * $numc;
// vengono visualizzati $num risultati per pagina partendo da $begin
$sqlnews="SELECT * from news ORDER BY data DESC LIMIT $begin, $numc";
$resultc=mysql_query($sqlnews,$db);
?>
while ($row=mysql_fetch_array($resultc))
{
$tmp = explode(" ",$row[data]);
list($anno,$mese,$giorno)= split ("-", $tmp[0], 3);
$ora = $tmp[1];
?>
$testo = $row[testo];
$size = strlen ($testo);
if($size > 100) {
$cutsize = strrpos (substr ($testo, 0, 100), "");
$testo_temp = substr($testo, 0, $cutsize);
$testo_new = ($testo_temp."...");
}
else { $testo_new = $testo; }
//echo $testo_new;
?>
if (file_exists("/news/$row[foto]") && is_file("/news/$row[foto]")) {?>
} ?>
|
|
"> echo $row["titolo"];?> echo $testo_new; ?>
|
|
} ?>
}
else
{
echo "Nessuna news";
}
@mysql_close();
?>
include("inc/footer_news.php"); ?>
include("inc/footer.php"); ?>