Simple Twitter RSS Processing

I required a simple feed from Twitter into www.MindOver-matter.co.uk/news.php. There are numerous examples around but a lot of them are very convoluted. Below is an simple code example. The function could of course be modifed to be generic whereby user info etc would be passed in. <?php function parse_cache_feed($usernames, $limit) { $feed = “http://twitter.com/statuses/user_timeline/130211322.rss”; $xml [...]

Development