Fetch and display the public twitter feed.
Display the most recent entries on the Twitter public timeline.
-
TarGarThu Feb 23 04:22:50
Spending my last minutes with @BTuned_in I'm really gonna miss her!!! Yahhhhhh -
dluvsmusickThu Feb 23 04:22:49
New Twit Pic & Yes I changed my twit pic 3 times today.... (yes that was throwing off on oomf...lol) -
ItsLindsayLoveeThu Feb 23 04:22:49
What The Hell Is LENT!? -
ladydeathstickThu Feb 23 04:22:49
#CNNDebate You guys always have the best debates! Way better than #Fox! -
BreedenBennettThu Feb 23 04:22:48
Феоктист -
OmarjosueRThu Feb 23 04:22:48
“@LaloGonzalezM: A ver... La verdad, la verdad... Qué verán este domingo? Premios Oscar o Premios Tv y Novelas? Jajaja” // Yo Tv y Novelas -
gaab_gomessThu Feb 23 04:22:48
que saudade que eu tenho daquele tempo, fico me perguntando todos os dias se ele n vai mais volta ;{ -
pansaru_botThu Feb 23 04:22:48
キ「シュール」[Part4] -
DonStackz5892Thu Feb 23 04:22:48
Sometimes i look at my old pictures and be like what the fuck i had on that day -
CoCoCookielipsThu Feb 23 04:22:48
“@kkdad09 #confessionnight head game, awesome” -
InkedUp_AriesThu Feb 23 04:22:47
*rick ross grunt* RT @Teez_DopestLame: UGH! http://t.co/EiETwGFO -
Honey___KissThu Feb 23 04:22:47
Hmu..bored af -
amoashineeThu Feb 23 04:22:47
#SuperJuniorEn40Principales @nicobarbieri @Los40ar falta muy poquito....hasta que no lo vea mis dedos no van a parar!!!! -
neiko_da_donThu Feb 23 04:22:47
& My Money Talk Fa Me Cause I Be Bein Quiet. -
__QUAYThu Feb 23 04:22:47
Middle finger to all da niggas dat won't me dead -
LemarFlocka6Thu Feb 23 04:22:47
I'm funny 👎👴 -
riinameilan92Thu Feb 23 04:22:47
Yakali mau pesta di akhirat (˘̶ِ̀ ˘̶́ ') RT @detikhot: Whitney Houston Dikubur dengan Memakai Perhiasan Rp 4,5 M http://t.co/Y3JgjQcd -
virdayullianieThu Feb 23 04:22:47
gwrs kak zhe :) RT @zheeafecto: engga enak badan bener ini :/ mata panda ): -
sahori1125Thu Feb 23 04:22:47
ひまきちのお休み☆ 夕飯の下ごしらえ中☆ ひじきの炒め煮・鶏手羽元のこってり煮・ハタハタの唐揚げが本日のメニューだよ(^-^) -
_rainaDeshaeeThu Feb 23 04:22:46
that pussy keep calling me
The Code:
<?php
$ul = qp('<?xml version="1.0"?><ul/>');
$url = 'http://twitter.com/statuses/public_timeline.xml';
$tpl = '<li>
<div style="height: 55px">
<img style="float:left" width="50" height="50" src="@img"/>
<strong>@uname</strong><em>@ts</em><br/>
@txt
</div>
</li>';
foreach (qp($url, 'status') as $status) {
$data = array();
$data['@ts'] = substr($status->children('created_at')->text(), 0, 20);
$data['@txt'] = filter_xss_admin($status->next('text')->text());
$data['@uname'] = htmlentities($status->parent()->find('user>screen_name')->text());
$data['@img'] = $status->next('profile_image_url')->text();
$data = strtr($tpl, $data);
$ul->append($data);
}
$out .= $ul->html();
?>