abstract //Search Abstract
* $res->date //Cache date
* $res->dispurl //Display URL
* $res->clickurl //The URL to be clicked
* $res->size //Size of file
* $res->title //Title of page
* $res->url //URL of website
*/
//echo the results
foreach ($results->resultset_web->result as $theresult) {
echo ''.$theresult->title.'
';
echo $theresult->abstract.'
';
echo ''.$theresult->url.' - size: '.$theresult->size/1024 .' kb - cache date: '.$theresult->date.'
';
echo '
';}
}
?>