in rss_update.php FIND:
PHP Code:
// insert the new items into the database
for($j = count($rss_allItems) - 1; $j >= 0; $j--) {
REPLACE WITH:
PHP Code:
// insert the new items into the database
for($j = 10 - 1; $j >= 0; $j--) {
you are replacing "count($rss_allItems)" with the number of news articles you want. in the example code above i replaced it with 10. so it will take the 10 news articles and post them. however, i don't know if this will be a problem or not because if there are only like 5 news articles and you have hard coded in 10 news articles it might pose a problem.