I'm trying to figure out a way to utilize a PHP script that will:
- Open an XML document when a link to that document is clicked (from an HTML page).
- Scan the XML document for tags.
- Create an HTML form with input fields based on the tags.
- Post the input data back to the XML within the tags (when form is submitted) and print the XML to HTML.
So, if I had an XML file that went like this:
<profile>
Hello, my name is <name></name>. I am <age></age> years old. I live in <place></place>
</profile>
Upon clicking a link to that file, PHP would generate a form like so:
<form>
Name:
Age:
Place:
</form>
Then upon completing and submitting the form (let's say the person is Joel, 25, from Boston), the following would be written to the screen:
Hello, my name is Joel. I am 25 years old. I live in Boston.
Any code or points to good tutorials would be appreciated.
THX
E.