How to make money with porn.  Don't forget to this site to keep for future updates and reference.

MAKE MONEY WITH PORN.COM MAKE MONEY WITH PORN.COM MAKE MONEY WITH PORN.COM MAKE MONEY WITH PORN.COM

How to make money with RSS Feeds

CONTENT DESIGN HOSTING PROGRAMS SOFTWARE SEO TRAFFIC

Domain Names for Sale Porn Reviews TGP's MGP's Link Lists Blogs Galleries Adult Forums Porn News RSS Feeds

How to add RSS feeds to your pornsite

NEW How to create rss feeds NEW

  1. If you need a www.topbucks.com account signup here I also have a list of sponsors with rss feeds

  2. Highlight and copy the code in the table (white box) below and paste it to a notepad document.

  3. Replace the url code in red with your link code (you get it from the topbucks "Static Galleries".

  4. Save the document as a .php file (example bangboat.php) 

  5. Add a include to your web page. <!--#include virtual="bangboat.php" -->

  6. Here is a page I used it for Bang Boat

  7. If you have a sponsors feed that includes thumbs like Nubiles.net has use the php code in the next table down this page (white box) scroll down.

<?php

$feedURL = "http://rss.topbucks.com/?feed=staticpic&site=bangboat&style=1&revid=31471&s=0";

$betweenItems = "<BR>";

$showDescription = 1;

$seperator = " - ";



class RSSParser {

var $insideitem = false;

var $tag = "";

var $title = "";

var $description = "";

var $link = "";



function startElement($parser, $tagName, $attrs) {

if ($this->insideitem) {

$this->tag = $tagName;

} elseif ($tagName == "ITEM") {

$this->insideitem = true;

}

}



function endElement($parser, $tagName) {

global $betweenItems, $showDescription, $seperator;



if ($tagName == "ITEM") {

printf("<b><a href='%s'>%s</a></b>",

trim($this->link),htmlspecialchars(trim($this->title)));

if($showDescription) printf("{$seperator}%s",

htmlspecialchars(trim($this->description)));

echo $betweenItems;

$this->title = "";

$this->description = "";

$this->link = "";

$this->insideitem = false;

}

}



function characterData($parser, $data) {

if ($this->insideitem) {

switch ($this->tag) {

case "TITLE":

$this->title .= $data;

break;

case "DESCRIPTION":

$this->description .= $data;

break;

case "LINK":

$this->link .= $data;

break;

}

}

}

}

$xml_parser = xml_parser_create();

$rss_parser = new RSSParser();

xml_set_object($xml_parser,&$rss_parser);

xml_set_element_handler($xml_parser, "startElement", "endElement");

xml_set_character_data_handler($xml_parser, "characterData");

$fp = fopen($feedURL,"r");

while ($data = fread($fp, 4096))

xml_parse($xml_parser, $data, feof($fp));

fclose($fp);

xml_parser_free($xml_parser);

?> 

Here is a RSS Reader for Feeds with Thumbnails. Here is a Nubiles feed I added to beaversreview.com Nubiles.net Review

<?php 

$feedURL = "http://www.nubiles.net/webmasters/promo/promofeed.php?coupon=759863&t=thumb110&days=7";

$betweenItems = "<p>"; 

$showDescription = 1; 

$seperator = ""; 



class RSSParser { 

var $insideitem = false; 

var $tag = ""; 

var $title = ""; 

var $description = ""; 

var $link = ""; 



function startElement($parser, $tagName, $attrs) { 

if ($this->insideitem) { 

$this->tag = $tagName; 

} elseif ($tagName == "ITEM") { 

$this->insideitem = true; 







function endElement($parser, $tagName) { 

global $betweenItems, $showDescription, $seperator; 

if ($tagName == "ITEM") { 

if($showDescription) printf("{$seperator}%s",trim($this->description)); 
printf("<b><a href='%s'>%s</a></b>",trim($this->link),htmlspecialchars(trim($this->title))); 
echo $betweenItems; 

$this->title = ""; 

$this->description = ""; 

$this->link = ""; 

$this->insideitem = false; 







function characterData($parser, $data) { 

if ($this->insideitem) { 

switch ($this->tag) { 

case "TITLE": 

$this->title .= $data; 

break; 

case "DESCRIPTION": 

$this->description .= $data; 

break; 

case "LINK": 

$this->link .= $data; 

break; 









$xml_parser = xml_parser_create(); 

$rss_parser = new RSSParser(); 

xml_set_object($xml_parser,&$rss_parser); 

xml_set_element_handler($xml_parser, "startElement", "endElement"); 

xml_set_character_data_handler($xml_parser, "characterData"); 

$fp = fopen($feedURL,"r"); 

while ($data = fread($fp, 4096)) 

xml_parse($xml_parser, $data, feof($fp)); 

fclose($fp); 

xml_parser_free($xml_parser); 

?>