hello ,, please Scripts owned shortcut links with a description and title them and when I want to add any link appears in the rss feed Is the title or description what is the rss feed file Who will
You make no sense man, but from my understanding, you want a script that grabs the RSS feed of some site, display the link appeared as its title of each entry. Try the following script: <?php header('Content-Type: text/html; charset=utf-8'); function getFeed($feed_url, $posts_to_show) { try { $content = file_get_contents($feed_url); $x = new SimpleXmlElement($content); echo "<ul>"; $i = 0; while ($i < $posts_to_show){ echo "<li><a href=\"" . $x->channel->item[$i]->link . "\" title=\"" . $x->channel->item[$i]->title . "\" target=\"_blank\">" . $x->channel->item[$i]->title . "</a></li>"; $i++; } echo "</ul>"; } catch (Exception $e) { echo "<p>The blog feed doesn't seem to be available at the moment...</p>"; } } getFeed("http://feeds.feedburner.com/TechCrunch", 15); // the first parameter is the URL to the RSS feed, the second is the num of post to show ?> PHP: Study this, this and that for reference.
thank you but ,, This is not I want to script or file .php upload on the site displays links to all the new links are added on the site