PHP XML-Export as file download

drupal, drupal-views, php

Solution

try setting the headers right:

<?php
header('Content-Type: text/xml');
header('Content-Disposition: attachment; filename="example.xml"'); 
header('Content-Transfer-Encoding: binary');

print '<?xml version="1.0" encoding="UTF-8" ?>';
print "\n <data>";
...
print "\n </data>";
?>

Problem

i have written a script that prints a XML file to the screen but I want it to open a download dialog so that i could save it as a file. how could i do that? thnx! the script: ``` <?php print '<?xml version="1.0" encoding="UTF-8" ?>'; print "\n <data>"; ... print "\n </data>"; ?> ```

Original source