|
|
|
|
|
|
|
|
|
|
|
» Collaboratori |
» Aziende |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
include("/web/htdocs/www.apacmilano.it/home/news/top_foot.inc.php");
include("/web/htdocs/www.apacmilano.it/home/news/config.inc.php");
top();
$db = mysql_connect($db_host, $db_user, $db_password);
if ($db == FALSE)
die ("Errore nella connessione. Verificare i parametri nel file config.inc.php");
mysql_select_db($db_name, $db)
or die ("Errore nella selezione del database. Verificare i parametri nel file config.inc.php");
if (!isset($start) OR $start<0)
$start=0;
$step = 20;
$query = "SELECT id,data,titolo FROM news ORDER BY data DESC LIMIT $start,$step";
$result = mysql_query($query, $db);
while ($row = mysql_fetch_array($result))
{ echo "" . date("j/n/y", $row[data]) . " $row[titolo]
"; }
?>
if ($start>0)
{ $start_back = $start - $step;
echo "precedenti";
}
?>
|
$query = "SELECT count(*) AS tot FROM news";
$result = mysql_query($query, $db);
$row = mysql_fetch_array($result);
$pages = intval(($row[tot]-1) / $step)+1;
?>
for ($i=0; $i<$pages AND $i<20; $i++)
{ $start_page = $i * $step;
echo "" . ($i+1) . " ";
}
?>
|
if ($start + $step < $row[tot])
{ $start_next = $start + $step;
echo "successivi";
}
?>
|
echo "Cerca negli articoli";
foot();
?> |
|
|
|
|
|
|
|
|
"Prima
Consulenza" legale gratuita per tutti
|
|
|
include("/web/htdocs/www.apacmilano.it/home/news/config.inc.php");
$db = mysql_connect($db_host, $db_user, $db_password);
if ($db == FALSE)
die ("Errore nella connessione. Verificare i parametri nel file config.inc.php");
mysql_select_db($db_name, $db)
or die ("Errore nella selezione del database. Verificare i parametri nel file config.inc.php");
$query = "SELECT id,data,titolo FROM news ORDER BY data DESC LIMIT 0,3";
$result = mysql_query($query, $db);
while ($row = mysql_fetch_array($result))
{ echo "" . date("j/n/y", $row[data]) . " $row[titolo]
"; }
mysql_close($db);
?>
|
Leggi
tutte le news |
|
|
|