Skip to content

Instantly share code, notes, and snippets.

@carrot
Created November 17, 2009 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carrot/237063 to your computer and use it in GitHub Desktop.
Save carrot/237063 to your computer and use it in GitHub Desktop.
<?php
$url = "http://search.twitter.com/search.json?q=from:kylemac";
$contents = file_get_contents($url);
$contents = utf8_encode($contents);
$results = json_decode($contents);
echo '<pre>';
print_r($results);
echo '</pre>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment