Syntax
1
2
3
4
|
<?php
$handle = "koonktech";
my_twitter($handle);
?>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
function my_twitter($username)
{
$no_of_tweets = 1;
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=" . $no_of_tweets;
$xml = simplexml_load_file($feed);
foreach($xml->children() as $child) {
foreach ($child as $value) {
if($value->getName() == "link") $link = $value['href'];
if($value->getName() == "content") {
$content = $value . "";
echo '<p class="twit">'.$content.' <a class="twt" href="'.$link.'" title=""> </a></p>';
}
}
}
}
|
1
2
3
4
|
<?php
$handle = "koonktech";
my_twitter($handle);
?>
|
Hello Friends! I am Ramana a part time blogger from Hyderabad.
0 comments:
Post a Comment