views:

24

answers:

1

how can i get a xml file when i pass a parameterized url

A: 

If you are generating the XML file in PHP, try setting the header as the first line of the script.

header("Content-type: text/xml");

Surim