little example to access VB_SOAP(login into vbulletin) with PEAR-SOAP class
( works in php4 and php5 )
PHP Code:
<?php
include_once('SOAP/Client.php');
$test= new SOAP_Client('http://www.c4u.to/forum/soap/server.php?wsdl');
$params=array( 'key' => 'test',
'password' => 'tester',
'username' => 'tester'
);
$result=$test->call('doLogin', $params);
print_r($result);
?>
update to version 1.0.1