Advertisement
Guest User

Untitled

a guest
Sep 21st, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. $ch = curl_init("http://www.google.com/trends/fetchComponent?q=swine&cid=TOP_QUERIES_0_0&export=3");
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  4. $html = curl_exec($ch);
  5. curl_close($ch);
  6. echo $html;
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement