-2

Possible Duplicate:
Best XML Parser for PHP

I'm submitting a form which returns an xml format with various pieces of information. How do I go about parsing this XML so I can display the information on a web page?

Many thanks!

Community
  • 1
  • 1
EI756
  • 557
  • 1
  • 8
  • 19

1 Answers1

0

You can use SimpleXML:

$xml = simplexml_load_string($form_xml_data);
ComFreek
  • 29,044
  • 18
  • 104
  • 156