shakeelstha Posted December 16, 2007 Share Posted December 16, 2007 I need to add new data in xml file without overwriting the existing data. How can i do it with DOM using php? Please give a complete example..... Quote Link to comment Share on other sites More sharing options...
paul2463 Posted December 16, 2007 Share Posted December 16, 2007 $old = orgional xml file; $new = new xml data file ; $old .= $new; //$old now has the $new data appended to the end of it. is that what you meant? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.