I’ve been using this PHP/AJAX rss reader http://www.w3schools.com/php/php_ajax_rss_reader.asp – it works well, but I have been trying to make more than three items come up in the resulting HTML. I’ve looked through all the PHP, but for the life of me I can’t work out how to make the thing show more than three items.
Thanks in advance
In the PHP loop it says
Which basicly means, i equals 0, and as long as i is less than 2 keep looping, and in each loop add one.
So it goes
0 -> 1 -> 2…. and stopsJust insert the number you want 🙂