Skip to content

Instantly share code, notes, and snippets.

@ridho1991
Created March 10, 2015 02:05
Show Gist options
  • Save ridho1991/6f2abe3e12102db83b30 to your computer and use it in GitHub Desktop.
Save ridho1991/6f2abe3e12102db83b30 to your computer and use it in GitHub Desktop.
Grab Google Trends Seluruh Negara
<html>
<head>
<title>All Countries</title>
<meta charset="UTF-8">
</head>
<body>
<?php
require_once('includes.php');
require_once('countries.php');
ini_set('max_execution_time', 0);
ini_set('memory_limit', '999M');
$googletrend=array();
echo '<hr>';
echo 'All Countries<br><hr>';
foreach($country_code as $code)
{
$googletrend=fetch_trends($code);
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