hi guys, i'm doing api calls from php backend like this:
$term = "AT&T Park";
$q = '"'. urlencode($term) .'"';
$url = "http://search.twitter.com/search.json?q={$q}&rpp=100";
$api_call = file_get_contents($url);
it's not returning anything, but same api call working just fine on my terminal.
here is a little screencast showing what's going on:
http://screencast.com/t/RnZsrwfGcc2q
any ideas?