Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url = $_SERVER['REQUEST_URI'];
- $kiwod = explode("/", $url);
- $cinta = str_replace('.html','',$kiwod[0]);
- echo $cinta;
- $s = $cinta;
- $rssbing = simplexml_load_file('http://www.bing.com/search?q='.urlencode($s).'&count=10&format=rss');
- echo '<p>';
- foreach ($rssbing->channel->item as $itembing) {
- echo ''.$itembing->title.' '.htmlspecialchars(strip_tags($itembing->description)).'';
- }
- if (empty($itembing)) {
- echo '<small>Not Found</small>';
- }
- echo '</p>';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement