View Single Post
  #11  
Old 02-08-2005, 06:08 PM
mark Offline
pp veteran
 
Join Date: Feb 2005
Location: Atlanta, GA USA
Posts: 89
rss

ok, i see that if i change:

Code:
    header("Content-type:application/rss+xml");
    echo $output;
    exit;
to:

Code:
    header("Content-type:application/xml");
    echo $output;
    exit;
it does bring back xml. why exactly do you need the rss+xml piece? Is it required for something?
Reply With Quote