#2 yetty
V Prvom rade ďakujem za pomoc...
$url = "https://ajax.googleapis.com/ajax/services/search/images?" .
"v=1.0&q=barack%20obama&key=INSERT-YOUR-KEY&userip=INSERT-USER-IP";
// sendRequest
// note how referer is set manually
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, /* Enter the URL of your site here */);
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
Ale chcel by som sa spýtať, keďže som sa pokúsil použiť tento kód z ich stránky, že aká URL má byť dosadená za "/* Enter the URL of your site here */" a v akom tvare.
A ako je to s volaním nedefinovanej funkcie curl_init(), presnejšie moja otázka znie, ako ten kód spojazdniť.
Vďaka za pomoc.