echo "<ul>";
foreach ($user_timeline as $user_tweet) {
echo "<li>";
echo TwitterTextFormatter::format_text($user_tweet) . "<br/>";
// Print also the tweet's image if is set
if (isset($user_tweet->entities->media)) {
$media_url = $user_tweet->entities->media[0]->media_url;
echo "<img src='{$media_url}' width='150px' />";
}
echo "</li>";
}
echo "</ul>";
please help.. thanks a lot in advance.