Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other XML USAGE Re: XML USAGE

#83445
Josh
Member

It depends on what you’re going to use XML for. You can read XML with jQuery but not write you’ll need a server side language for that (PHP). You can read and write to an XML file with PHP. So if you build different modules with PHP to write / read / edit / delete XML elements and use jQuery to execute the modules you could quickly build a nice AJAX / XML powered application. Reading XML with PHP is much faster (Browser speed not coding) then using jQuery.

I hope these makes sense to you.