Quantcast
Channel: reading twitter's rss search feed with simple xml - Stack Overflow
Browsing latest articles
Browse All 5 View Live

Answer by Shadi Almosri for reading twitter's rss search feed with simple xml

I made this and it works :)) $sea_name is the keyword your looking for... <?php function twitter_feed( $sea_name ){ $endpoint = 'http://search.twitter.com/search.rss?q='.urlencode($sea_name); // URL...

View Article



Answer by vsr for reading twitter's rss search feed with simple xml

In the code, $screenname is assigned a value but you are echoing $author. To get elements within namespaces like google:image_link ,you will have to do this: $g =...

View Article

Answer by streetparade for reading twitter's rss search feed with simple xml

if (!$xml = simplexml_load_file('http://search.twitter.com/search.atom?q='.urlencode ($terms))) { throw new RuntimeException('Unable to load or parse search results feed'); } if (!count($entries =...

View Article

Answer by Josh Davis for reading twitter's rss search feed with simple xml

Set error_reporting(E_ALL); and you'll see that $author isn't defined. You can't access <google:image_link/> this way, you'll have to use XPath or children() $key->children("google",...

View Article

reading twitter's rss search feed with simple xml

Having some trouble selecting some nodes in the rss feed for twitter's search the rss url is here http://search.twitter.com/search.rss?q=twitfile each item looks like this <item> <title>RT...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images