Friday May 23, 2025 10:41 PM PDT
There are currently 16 viewers browsing the site.
Donate
Information
News
Images
Expansions
Patches
Crafting
Prowess
The Show
Feeds
News Feed
Link To Site
Official Sites
Official Website
Official Forums
Official IRC
Official Twitter
Official YouTube
News Feed
CSS Code for JavaScript & PHP
If you want to format the output for the JavaScript and/or PHP News Feeds use the follow CSS class names to adjust things.
JavaScript Code
Latest Darkfall News
PHP Code
$url = "http://darkfallinfo.com/newsfeed/dfid-php.txt"; $handle = fopen($url, \'r\'); $contents = ""; while(!feof($handle)) $contents .= fread($handle, 8192); echo($contents); fclose($handle); ?>
RSS Feed
http://darkfallinfo.com/newsfeed/dfid-rss.xml
Using RSS Feed on PHP Pages
In order to use the code below you will need to download
this
file to host on your server. The RSS parser was made by the guys over at
Warcry
.
include_once("rss_parser.php"); //RSS Version 1.0 $rss_data = fetch_rss("http://darkfallinfo.com/newsfeed/dfid-rss.txt"); echo_rss($rss_data); ?>