Hi,
I am using UnSOAP to send a variable from 1 server to many clients, however when using this:
require_once('nusoap.php');
$parameters = array('username'=>$username,'password'=>$password);
$soapclient = new soapclient('http://www.phpbbpassport.com/passport_db.php');
$response=$soapclient->call('userdetails',$parameters);
and echoing $response, I am getting the value:
The variable on the server (which is in a function called userdetails and is returned) is of a sql query.
Any idea's
Thanks in advance,
James