Hi to all!
I have an xml-like POST payload (see bottom) from a credit card payment service.
How can I validate the these POST vars (I have seen I have all in HTTP_POST_VARS variables).
With "validate" I mean I would like to convert the values into an array for process these. The xml is like this:
<?xml version='1.0' encoding='UTF-8'?><message TX Order='100364' CF R ID='645641' Date='Sat Feb 28 18:55:16 2004' storeid='400050'><items><item ItemNum='0' UniqueID='001'/></items></message>
For example in the POST receiver script I'd like to have verables like $order=100364, $CFRID=645641... etc..
THanks a lot!