I'm using NuSOAP to send stuff from a vb.net application to a PHP script, I'm sending a heap of data as you can see here but am wondering if there is a way I can send just one variable and it have all my info inside it.
$server->register('hello', // method name
array('ClubName' => 'xsd:string', 'Established' => 'xsd:string', 'Region' => 'xsd:string', 'LogoURL' => 'xsd:string', 'AgeGroups' => 'xsd:string', 'HomeGround' => 'xsd:string', 'Lon' => 'xsd:string', 'Lat' => 'xsd:string', 'SecondaryHomeGrounds' => 'xsd:string', 'Kiwis' => 'xsd:string', 'Phone' => 'xsd:string'),
function hello($ClubName, $Established, $Region, $LogoURL, $AgeGroups, $HomeGround, $Lon, $Lat, $SecondaryHomeGrounds, $Kiwis, $Phone){
// Do stuff here....
}