I have a few questions.
When parsing XML data in a php file the script is told where the data is. For example.
$file = "data.xml";
This works fine if the data is to be collected from a file or url. What if the xml data is being sent to the script from a form type post?
How is the script told about the data?
or is it because the data is being sent to the script I don't have worry about telling the script it is coming? Would I then need to define the xml data tags first?