How to html div value export to xml file

A

Anonymous

Guest
How to html div value export to xml file with php code?

Please help!
 
i want to my php code do this:

example:
<div class ="offers"> some text</div>
<div class = "pictures"> some link</div>
<div class = "price"> 200$</div>

i want to make xml file like this example:
<my offers>
<offers>some text</offers>
<pictures>some link</pictures>
<price> 200$</price>
</my offers>

from div tag put value in xml file
 
Back
Top