Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

ie dot raymond at gmail dot com
15 years ago
If you need to output valid xml in your response, don't forget to set your header content type to xml in addition to echoing out the result of asXML():

<?php

$xml
=simplexml_load_file('...');
...
...
xml stuff
...

//output xml in your response:
header('Content-Type: text/xml');
echo
$xml->asXML();
?>

<< Back to user notes page

To Top