<?php require_once('SOAP/Client.php'); ?>
<?php
$wsdlurl = 'http://api.google.com/GoogleSearch.wsdl';
$WSDL =& new SOAP_WSDL($wsdlurl);
$client =& $WSDL->getProxy();
?>
<?php
$response =
$client->doGoogleSearch(
$key,$query,0,4,
false,'',false,'','','');
?>
<?php
foreach($response->resultElements as $result) {
echo '<a href="'.$result->URL.'">';
echo $result->title."</a><br><br>\n";
echo $result->snippet."<br><br><br>\n";
}
?>