I am developing an application which requires the reading and writing of XML files. Reading I’ve got covered, but is writing possible at all? The layout of my webapp is like this:
../includes/ (irrelevant)
../content.xml (xml to be written to)
../index.html (irrelevant)
../admin.html (file to write with)
Any help appreciated, thanks.
I am developing an application which requires the reading and writing of XML files.
Share
You will need to write some type of form handler or web service on the server side. Once this is done you can use AJAX to call the form handler or service and submit data that way.
Example-form.html -> submit -> formhandler.php -> content.xml