So, in order for us to talk to the Twitter API, we need to use cURL. This isn't a hard and fast rule, but it sure does make our lives easier. The cURL library should be installed as part of your PHP installation, but do check.
cURL allows us to make a simple call to the Twitter API, and grab some results back if necessary. I'll be using XML to return results for this demo, but you can use JSON if you want. Anyway, without further ado, here is a nice piece of PHP code to talk to the Twitter Search API - so create a file called getSearch.php :
View Complete Post