| 1. I share my bitch |
| 2. Julies Room |
| 3. Hot Girlfriends |
| 4. Your Amateur Movies |
| 5. Real Sex Vids |
| 6. Young Nimphets |
| 7. Eroxia Videos |
| 8. Hard Fuck Video |
| 9. Homemade XXX Videos |
| 10. Spicy Amateurs |
| 11. Perverted Porn |
| 12. Amateur Orgasm |
| 13. |
| 14. |
| 15. |
http://sexzor.com/webmaster.php →
We are very pleased to offer rss feeds. There is one main public feed (for search engines and visitors) with all posts updated regulary. For webmasters there is possibility to get private feeds in form they like. It is very very useful for automation and with our feeds you can make tousands of updated sites without any special work and we show you how.
All tags depends on one tag. So if you have Amateurs site, you can choose amateurs tagged video only. Currently we have three types of feeds:
this is standard feed type, with short-cut text (if it is long), useful for text-links sites.
special feed very useful for blogs, 'description' item of rss contains escaped html with video description and two thumbs with size 160x120px. Unescaped it looks like this:
Two hand fisting ! OMG !<p><a href="http://sexzor.com/fisting.html" title="Fisting">
<img src="http://th.gazm.us/66/2.jpg.th160-120.jpg" alt="Fisting" /></a>
<a href="http://sexzor.com/fisting.html" title="Fisting">
<img src="http://th.gazm.us/66/7.jpg.th160-120.jpg" alt="Fisting" /></a></p>
this feed is used mostly for wordpress blogs - see guideofporn.com
This feed is primaly used by sites with big thumbs (320x240px), like bigpornolist.com. Description item in rss feed is filled by url of big thumb.
Wordpress is my favorite publishing tool. Its not perfect but for making site in hlaf-hour is excelent. FeedWordPress fills your databes with posts targeting to our site. Your work only is to setup it. Wordpress you can download at wordpress.org and FeedWordPress is aviable at http://projects.radgeek.com/feedwordpress
LastRss is simple powerfull open source PHP class for parsing rss feeds. It has cache and it is very usable. You can download LastRss here
Simple source code used in bigpornolist.com:
include './lastRSS.php';
// create lastRSS object
$rss = new lastRSS;
// setup transparent cache
$rss->cache_dir = './cache';
$rss->cache_time = 3600; // one hour
if ($rs = $rss->get('http://sexzor.com/feeds/tag/all/thumbs')) {
//print_r($rs);
$i = 0;
foreach($rs['items'] as $polozka) {
echo '<div class="box"><h3><a ';
echo 'href="'.$polozka['link'].'" target="_blank" title="'.$polozka['title'].'">
<img style="width:320px;height:240px;" src="'.$polozka['description'].'" />
</a><br /><a href="'.$polozka['link'].'">'.$polozka['title']."
</a></h3>\n</div>";
$i++;
}
}