/ Published in: PHP
Easy function to get the avatar from a Twitter User
Expand |
Embed | Plain Text
<?php // Avatar de Twitter function TwitterAvatar($username) { $xml = simplexml_load_file("http://twitter.com/users/".$username.".xml"); return $xml->profile_image_url; } ?>
You need to login to post a comment.
