This one is the correct one....
PHP Code:
<?php
$filename = 'keywords.txt';
$handle = fopen($filename, "rb");
$keywords = fread($handle, filesize($filename));
fclose($handle);
$keywords = str_replace(" ", "+", $keywords);
$keywords = explode("\n", $keywords);
foreach($keywords as $keyword)
{
echo 'http://blogsearch.google.com/blogsearch_feeds?hl=en&q=' . $keyword . '&ie=utf-8&num=100&output=rss<br>';
echo 'http://www.blogpulse.com/rss?query=%22' . $keyword . '%22&sort=date&operator=phrase<br>';
echo 'http://search.live.com/feeds/results.aspx?q=' . $keyword . '&go=Search+Feeds&form=QBFR<br>';
echo 'http://feeds.technorati.com/search/' . $keyword . '?authority=a4&language=en<br>';
}
?>
I've added Live Feed Search (Thanks Lazyleo!) and i've fixed Technorati.
Once again, create a file called keywords.txt and add your keywords to it. One on each line.
Then run the above script. (Making sure both files are in the same directory!)
edit: i'm concidering adding some more search pages. Download .com have a good blog search result, any others?