salve a tutti --- in pratica ho questo semplice script che dovrebbe generare un documento xml
Codice PHP:
<?php
$dom = new DOMDocument();
$dom->load('quotes.xml');
$quote = $dom->createElement('phrase');
$phraseText = $dom->createTextNode($_POST['quote']);
$phrase->appendChild($phraseText);
$author = $$dom->createElement('author');
$authorText = $dom->createTextNode($_POST['author']);
$author->appendChild($authorText);
$quote->appendChild($phrase);
$quote->appendChild($author);
$dom->documentElement->appendChild($quote);
$dom->save('quotes.xml');
echo "citazione salvata";
?>
ma non riesco ad usarlo in locale ...cosa dovrei impostare per farlo funzionare ??? grazie