File: google_example.php

package info (click to toggle)
horde3 3.0.4-4sarge7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 15,980 kB
  • ctags: 16,295
  • sloc: php: 68,726; xml: 2,382; sql: 498; makefile: 74; sh: 63; pascal: 6
file content (25 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
 * $Horde: horde/util/google_example.php,v 1.1 2003/09/28 03:23:52 chuck Exp $
 */

$google_key = '';

define('HORDE_BASE', dirname(__FILE__));
require_once HORDE_BASE . '/lib/base.php';
require_once HORDE_BASE . '/lib/Search.php';

if (empty($google_key)) {
    exit('You must provide a Google API key.');
}

$google = &Horde_Search::singleton('google', array('key' => $key));
$result = $google->search(array('query' => Util::getFormData('q', 'horde')));

if ($result !== $false) {
    echo '<pre>';
    var_dump($result);
    echo '</pre>';
} else {
    echo 'Query failed.';
}