_______________________________________________________________________
W I A D O M O Ś C I
_______________________________________________________________
require "info/config.php";
$newsdata="info/newsdata.dat";
$table=file($newsdata);
$total=count($table);
$max=$total-$show_num;
if ($max < 0) {
$max=0;
}
for ($i=$total; $i >= $max; $i--)
{
$table[$i]=trim($table[$i]);
if($table[$i]!="")
{
echo "$table[$i]$spacer";
}
}
?>
|