views:

1229

answers:

3

More specifically I'm trying to make the google adwords API work using PHP 4. What are my options? Any links to a class I could use, sample code, etc would be much appreciated.

Thanks.

+4  A: 

I had no problems with NuSOAP

And here is an example of using NuSOAP with the Google API

Simon
+1  A: 

you can use wsdl2php to create php proxy from wsdl file. afterwards you can use the generated proxy to send and recieve information from the webservice.

Dror Helper
A: 

It can be a nightmare trying to get all the details for a SOAP implementation into a handy class for PHP. If you are ever in this situation, thought I would let you know about a site that generates a PHP class ready to use with a SOAP server using native SoapClient in PHP 5. Its free to use, and can be found at www.apigenerator.com. Try it out!

warren