Vrei sa afisezi in format text numarul cititorilor din twitter?
Tot ce trebuie sa faci este sa faci un fisier denumit twitter.php si sa pui urmatorul cod in el:
[php]<?php
$tw = get_option("twitterfollowerscount");
if ($tw[‘lastcheck’] < ( mktime() %u2013 3600 ) )
{
$xml=file_get_contents(‘https://twitter.com/users/show.xml?screen_name=dexblog’);
if (preg_match(‘/followers_count>(.*)</’,$xml,$match)!=0) {
$tw[‘count’] = $match[1];
}
$tw[‘lastcheck’] = mktime();
update_option("twitterfollowerscount",$tw);
}
echo $tw[‘count’];
?>[/php]
Apoi unde doresti sa apara numarul de cititori pui urmatorul cod: <?php include(„twitter.php”); ?>