magpie rss and remember the milk feed url

azbikewerkz

New Member
So, I'm working for the first time with embedding a RSS (or atom, but right now I'm trying to stick to rss) feed from my Remember the Milk account in my own website. (Eventually, there will be an at a glance dashboard style thing.)Now, like I said, this is pretty much my first time actually working with rss feeds. I've been using Magpie RSS, and whenever I give it a url to fetch, it errors out saying:\[code\]Warning: MagpieRSS: fetch_rss called without a url in /magpierss/rss_fetch.inc on line 238Warning: Invalid argument supplied for foreach() in dash.php on line 53\[/code\]So, from this I conclude that my URL is wrong. However, this is the RSS feed url supplied by RTM, and which works just fine in my google reader. So, what am I screwing up?Edit: The php I'm using to call rss_fetch:\[code\]<?phprequire_once("php/magpierss/rss_fetch.inc");$url = $_GET['http://www.rememberthemilk.com/rss/test.reeher/15418678/?tok=eJwNzccJw0AQAMCKzmwO5VzYxQa ZPWP9R*Y8JoFVAph3Zs26GIXmEgHkp3VUNsqZ1aK436o0Dm4JykGjLt*9*uqetc1vp- fPVAFwzwGpmLPbHYrPGws60j32koOa3vwbiKxgvVs9Ug-gVBuNpdk-AEX*ysp'];$rss= fetch_rss( $url );echo $rss->channel['title'] . "<p>";echo "<ul>";foreach ($rss->items as $item) { $href = http://stackoverflow.com/questions/3809822/$item['link']; $title = $item['title']; echo "<li><a href=http://stackoverflow.com/questions/3809822/$href>$title</a></li";}echo "</ul>";?>\[/code\]It's pretty much the example php from Magpie.
 
Back
Top