I have an xml file which I would like to create a form/table around to add, edit and delete records using PHP.
Is there any way I can create a table that shows all results, and allows me to either edit or delete that particular row of the table which represents a full record within the XML file ?
i want to be able to add/edit/delete tags using my web browser only without editing the xml file on pc and uploading to FTP..
I need this done in PHP, javascript or any other way to do so.
Please dont give me links for simpleXML coz i tried this and i didn't mange to make it work :(
it would be much appreciated if someone can help me! Thanks!
my xml file (scores.xml) looks like that :
<Games>
<Game>
<Header> </Header>
<Row>B</Row>
<Date>07.10.2011 01:05</Date>
<Time>Finished</Time>
<HomeTeam>Team1</HomeTeam>
<Score>1 - 3</Score>
<AwayTeam>Team2</AwayTeam>
<InfoID>info2</InfoID>
<InfoData> </InfoData>
<Other> </Other>
</Game>
</Games>