Skip to content

Instantly share code, notes, and snippets.

@ridho1991
Created March 10, 2015 02:04
Show Gist options
  • Save ridho1991/dabadfef5733dc8e1294 to your computer and use it in GitHub Desktop.
Save ridho1991/dabadfef5733dc8e1294 to your computer and use it in GitHub Desktop.
Grab Google Trends Negara Tertentu
<html>
<head>
<title><?php echo $_GET['name'];;?></title>
<meta charset="UTF-8">
</head>
<body>
<?php
require_once('includes.php');
ini_set('max_execution_time', 0);
ini_set('memory_limit', '999M');
$country_code=$_GET['code'];
$country_name=$_GET['name'];
$googletrend=fetch_trends($country_code);
echo '<hr>';
echo $country_name.'<br><hr>';
foreach($googletrend as $trend)
{
echo $trend.'<br>';
}
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment