PHP Code:
print "<pre>";
print_r($rss_array);
print "</pre>";
The output of that is;
Now what variable holds the information to show the title and description? I've read the PHP manual and they say;
PHP Code:
$b = array ('m' => 'monkey', 'foo' => 'bar', 'x' => array ('x', 'y', 'z'));
$results = print_r($b, true); //$results now contains output from print_r
But I don't quite get it. Any help? Thanks!