Get status from Twitter
September 24, 2011 in php
A very simple function to get your last post from Twitter
function getTwitterStatus() {
$username = 'your-username';
$url = 'http://twitter.com/statuses/user_timeline/'.$username.'.xml?count=1';
$xml = simplexml_load_string(file_get_contents($url));
$item = $xml->status;
$twit = $item->text;
echo $twit;
}