impossible de faire générer un xml sur le serveur
1 2 3 4 5 6 7 8 9 10 11
| $xml = new SimpleXMLElement($xmlstr);
do {
$row = $xml->addChild('row');
$row->addChild('title_id', $row_rsTitles['title_id']);
$row->addChild('title', $row_rsTitles['title']);
} while ($row_rsTitles = mysql_fetch_assoc($rsTitles));
//echo xml string to browser
header("Content-type: text/xml");
echo $xml->asXML('fichier.xml'); |
Par contre, si je commente la ligne "titre",
// $row->addChild('title', $row_rsTitles['title']);
J'arrive à afficher ma page dans le browser sans probleme.
Je ne vois pas d'ou vient l'erreur.
Votre aide me sera très utile pour continuer.
Merci
Partager