ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hi. I've got 2 files, an xml file and a a php script, included in another file. When the form is submitted, I want the script to insert the new line at the top of the xml, but instead it inserts the line three times. The culprit code is marked by comments.
Did you try to write $newguestbook in another file, just for testing ?
I just tried as follows:
Code:
//trouble begins here:
//var_dump($newguestbook); //this output is perfect
//but this section doesn't work as it appears it should; instead of corresponding to my var_dump it duplicates the new record three times first
//$guestbookhandle=fopen($guestbookfromfile, 'w');
//fwrite($guestbookhandle, $newguestbook);
//fclose($guestbookhandle);
$otherhandle=fopen("xml/otherfile.xml", "x");
fwrite($otherhandle, $newguestbook);
fclose($otherhandle);
//end of trouble
. . . which works as it should. But I still can't figure out why the other fails.
I don't know, I never used DOMDocument class. After a quick view in php doc, it seems it has a save method which is meant to save the xml file after making change, no ?
Maybe you have to destroy the $domguestbook object just before open the xml/guestbook.xml for writting...
I don't know, I never used DOMDocument class. After a quick view in php doc, it seems it has a save method which is meant to save the xml file after making change, no ?
Maybe you have to destroy the $domguestbook object just before open the xml/guestbook.xml for writting...
PHP Code:
$domguestbook = null;
My understanding is that saveXML just takes a dom xml tree and returns it as a string so you can write it wherever you please. But your suggestion leads to another possible solution, save(), which I've never discovered.
I tried destroying $domguestbook first, but that didn't work either. Later today I'm going to try save().
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.