Soldato
- Joined
- 10 Sep 2003
- Posts
- 5,019
- Location
- Midlands
Hello,
I am trying to find a way of adding multiple nodes like so:
The only way i can find is a bit hackish
What is the proper way of doing this?
Jonno.
I am trying to find a way of adding multiple nodes like so:
Code:
<blah>
<email>[email protected]</email>
<email>[email protected]</email>
<emai>[email protected]</email>
</blah>
The only way i can find is a bit hackish

Code:
$params->blah = new SoapVar('<email>[email protected]</email><email>[email protected]</email><emai>[email protected]</email>', XSD_ANYXML);
What is the proper way of doing this?
Jonno.