Hi,
I am trying to publish Tweets onto a page. Does anyone know how it can be done?
I have the following code but it doesn't work.
Code:<div class="twittercellwhyev"> <ol> <? $feed = json_decode(file_get_contents('https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=bbc&count=5')); $pattern = "/http:\/\/(www\.)?([^.]+\.[^.\s]+\.?[^.\s]*)/i"; $replace = "<a href='http://\\1\\2'>http://\\1\\2</a>"; foreach($feed as $output) { ?> <div class="twittercellinnerev"> <li> <? echo preg_replace($pattern,$replace,$output->text); ?> </div> </li> <? } ?> </ol> <div class="twitterwhyevimage"> <a href="http://twitter.com" rel="nofollow" > <img src="/images/followusontwitter.png" alt="Twitter.com"/> </a> </div> </div>



Reply With Quote





Bookmarks