L
lak
I am having an XML file that contains some records.
I need to parse that file and display the records in the form of
table.
If I change the file, i.e. if I modified some contents in the XML
file, that needs to be updated in the table automatically.
For example:
XML file:
<?xml version="1.0"?>
<student>
<record>
<Name>XXX</Name>
<Mail>[email protected]</Mail>
</record>
<record>
<Name>YYY</Name>
<Mail>[email protected]</Mail>
</record>
<student>
I need to display this in the form of table. I use the PHP xml parser
to parse this and I displayed that in the table.
Now my requirement is if the XXX is changed to GGG, then I need to
update the front end immediately using AJAX. I don't need to refresh
the page. I just need to update the XXX to GGG.
How can I do that?
Pls help!
I need to parse that file and display the records in the form of
table.
If I change the file, i.e. if I modified some contents in the XML
file, that needs to be updated in the table automatically.
For example:
XML file:
<?xml version="1.0"?>
<student>
<record>
<Name>XXX</Name>
<Mail>[email protected]</Mail>
</record>
<record>
<Name>YYY</Name>
<Mail>[email protected]</Mail>
</record>
<student>
I need to display this in the form of table. I use the PHP xml parser
to parse this and I displayed that in the table.
Now my requirement is if the XXX is changed to GGG, then I need to
update the front end immediately using AJAX. I don't need to refresh
the page. I just need to update the XXX to GGG.
How can I do that?
Pls help!