<?php header('Content-type: application/rss+xml'); ?>
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<atom:link href="http://www.infinitbin.com/projects.xml" rel="self" type="application/rss+xml" />

<?php
require_once '../config/config.php';
require_once '../config/dbconfig.php';
$feedtitle = '';
if(isset($_GET['filter']) and $_GET['filter'] == 1){$feedtitle = " - Filtered Results";}

echo '
	<title><![CDATA[Infinitbin.com Latest Projects' . $feedtitle . ']]></title>
	<link>http://www.infinitbin.com/</link>
	<description><![CDATA[Infinitbin.com is a platform that brings together freelancers/workers and employers, and provides an outsourcing marketplace to make products and services more cost effective. It tends to make it easier for employers to reach a vast majority of able skilled workers from all over the globe at a reasonable cost and still attain a greater return on investment with there projects.]]>
	</description>
	<copyright>www.infinitbin.com © 2011</copyright>
	<category>Freelance jobs and projects</category>
	<generator>http://www.infinitbin.com</generator>
	<language>en</language>
	<ttl>30</ttl>
	
	<image>
		<url><![CDATA[http://www.infinitbin.com/static/images/infinitbin-logo2.png]]></url>
		<title><![CDATA[Infinitbin.com Latest Projects' . $feedtitle . ']]></title>
		<link>http://www.infinitbin.com/</link>
		<description><![CDATA[Infinitbin.com is a platform that brings together freelancers/workers and employers, and provides an outsourcing marketplace to make products and services more cost effective. It tends to make it easier for employers to reach a vast majority of able skilled workers from all over the globe at a reasonable cost and still attain a greater return on investment with there projects.]]>
		</description>
	</image>';


	autoload('ProjectsAccess');
	$project = new ProjectsAccess;
	echo $project->list_projects('','',10,'feed');

?>

</channel>
</rss>