tags:

views:

41

answers:

1

I have 2 text boxes and a radio button. When the user clicks submit I it to generate a XML file with the fallowing format.

<object>
    <string1>$string1</string1>
    <string2>$string2</string2>
    <bool>$myBoolean</bool>
</object>

After that I want to be able to read through the file and display it.

+1  A: 

SimpleXML should get you up and running.

stillstanding