Hi y'all,
Does anyone know where and/or how I can limit the number of lines in de RSS-Feed? I use the PHPWCMS script as a newsscript (YES, it does work! ) but the number of newsitems is now running to 400 and the RSS Feed makes over time.
I hope that some one can help... Thanks in advance!
Cheers Drubus
Limited number of lines in RSS-Feed
-
- Posts: 47
- Joined: Sat 10. Apr 2004, 12:53
- Location: NL
Limited number of lines in RSS-Feed
http://qoala.nl - Nieuws om op te reageren!
you could use this script
http://www.phpwcms.de/forum/viewtopic.php?t=3362
and make a while loop in it like
hope this helps
greetz,
passie
http://www.phpwcms.de/forum/viewtopic.php?t=3362
and make a while loop in it like
Code: Select all
while($i<3){
$row .= @fgets($fp, 4096);
$i++
}
greetz,
passie