rss feeds

On your travels around the site you've no doubt run into this button a few times: RSS feed available

Seeing this button means an RSS feed is available - usually the content is described right next to the button.

RSS (Really Simple Syndication) is a way for Cyberscore to share it's content with other websites. By opening and parsing the RSS feeds we make available, you can get the latest Cyberscore news or submissions displayed on your website or as a Live Bookmark in Firefox.

You are able to download thousands of separate feeds from Cyberscore:

how do i open one?

Here's an example in PHP which uses the Magpie RSS parser, and the latest submissions (site-wide) feed. It assumes that you have placed the Magpie includes in a folder called "rss".

<ul>
<?php
require_once("rss/rss_fetch.inc");
$rss = fetch_rss("http://external.cyberscore.net/latest-records.rss");

foreach ($rss->items As $News) {
?>
    <li><a href="<?=$News['link']?>"><?=$News['title']?></a></li>
<?php
}
?>
</ul>

Executing this code will produce the following output:

You could also use an RSS reader to view them that way, or set a Live Bookmark in Firefox.

choose your game