Joined: 17 Jun 2009 |
Posts: 1 |
|
|
|
Posted: Tue Jun 16, 2009 11:29 pm |
|
|
|
|
|
I'm having trouble sending lots of data via NuSOAP...
$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....
} |
Is there another way of sending blocks of data from VB to PHP via NuSOAP? maybe a array inside a array?
|
|