Afficher un message
Vieux 15/09/2007, 14h16   #1
Joker7
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut split in to multiple pages (I think)

Hi,
I'm using the code below to display news articles-which works great apart
from. I can control the number of articles,but I would like to add a link to
the bottom of the page to the un-displayed articles ( nexted 5 articles and
so on) any pointers would be most welcome as most know my PHP skills are not
the best .

Cheers
Chris


<?

$max_latest = 5;
$filename = "articlesum.php";

#- open article
if(file_exists($filename)){
$fh = fopen($filename, "r");
$old_news = fread($fh, filesize($filename));
fclose($fh);
}
#- get article
$articles = explode("<!--ARTICLE-->", $old_news);

$i=0;
foreach ( $articles as $article ){
if(count($articles)>$i){
if($max_latest >= $i++){
print $article;
}
}
}

?>
--
Cheap As Chips Broadband http://yeah.kick-butt.co.uk
Superb hosting & domain name deals http://host.kick-butt.co.uk
  Réponse avec citation
 
Page generated in 0,05453 seconds with 9 queries