web services with PHP?? very simple

Tags:

check out this article on zend using PHP5+

PHP SOAP EXTENSION

is this easy enough:

  <?php
$client
= new
   
SoapClient(
       
"http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl"
   
);

print(
$client->getQuote("ibm"));
 
?>