<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free and Open Source Web Resources &#187; PHP</title>
	<atom:link href="http://inwebdeveloper.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://inwebdeveloper.com</link>
	<description>Free and Open Source Web Resources</description>
	<lastBuildDate>Sun, 05 Feb 2012 21:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>PHP: Get Title and Meta Tags</title>
		<link>http://inwebdeveloper.com/2012/02/06/php-get-title-and-meta-tags/</link>
		<comments>http://inwebdeveloper.com/2012/02/06/php-get-title-and-meta-tags/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 21:26:24 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1490</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/jquery/" title="View all posts in jQuery" rel="category tag">jQuery</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/jquery/" rel="tag">jQuery</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a></p>If you want to make a project such as scraping or digg submit url, here are some PHP functions that can be used: 1. How to Scrape Meta Tags From Any Web Page With PHP Source : http://webhole.net/2010/02/21/how-to-extract-meta-data-from-a-page/ 2. Digg Like URL Submitter Using JQuery and PHP 3. PHP function get_meta_tags () Related Reading:<table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2012/02/06/php-get-title-and-meta-tags/' title='PHP: Get Title and Meta Tags'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2012/02/06/php-get-title-and-meta-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pad Numbers in PHP</title>
		<link>http://inwebdeveloper.com/2012/01/25/pad-numbers-in-php/</link>
		<comments>http://inwebdeveloper.com/2012/01/25/pad-numbers-in-php/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 05:34:39 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1483</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a></p>If you want to format a number with leading or trailing zeroes, you can use this method : 1. Use the printf( ) or sprintf( ) function 2. Use the str_pad() function OR Related Reading:<table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2012/01/25/pad-numbers-in-php/' title='Pad Numbers in PHP'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2012/01/25/pad-numbers-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial : Parsing XML With PHP</title>
		<link>http://inwebdeveloper.com/2012/01/14/tutorial-parsing-xml-with-php/</link>
		<comments>http://inwebdeveloper.com/2012/01/14/tutorial-parsing-xml-with-php/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 20:23:06 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Snippets]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1472</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/mysql/" title="View all posts in MySQL" rel="category tag">MySQL</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a>, <a href="http://inwebdeveloper.com/category/php-snippets/" title="View all posts in PHP Snippets" rel="category tag">PHP Snippets</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/mysql/" rel="tag">MySQL</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a>, <a href="http://inwebdeveloper.com/tag/xml/" rel="tag">XML</a></p>Parsing XML With PHP Maybe it&#8217;s a lot of tutorials that teach how to parsing XML with PHP. However, only the basics. What if a little more complicated. This time I made a tutorial how to parsing XML with PHP, then process the data into MySQL. First, an XML file. Now, code in PHP. How,<a href="http://inwebdeveloper.com/2012/01/14/tutorial-parsing-xml-with-php/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2012/01/14/tutorial-parsing-xml-with-php/' title='Tutorial : Parsing XML With PHP'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2012/01/14/tutorial-parsing-xml-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharrre: A jQuery plugin for sharing buttons</title>
		<link>http://inwebdeveloper.com/2011/12/02/sharrre-a-jquery-plugin-for-sharing-buttons/</link>
		<comments>http://inwebdeveloper.com/2011/12/02/sharrre-a-jquery-plugin-for-sharing-buttons/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 22:09:22 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google Plus]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1414</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/jquery/" title="View all posts in jQuery" rel="category tag">jQuery</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/facebook/" rel="tag">Facebook</a>, <a href="http://inwebdeveloper.com/tag/google-plus/" rel="tag">Google Plus</a>, <a href="http://inwebdeveloper.com/tag/jquery/" rel="tag">jQuery</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a>, <a href="http://inwebdeveloper.com/tag/twitter/" rel="tag">Twitter</a></p>Sharrre is a jQuery plugin that allows you to create nice widgets sharing for Facebook, Twitter, Google Plus (with PHP script) and more. The plugin calls the social buttons on demand which is great for minimizing the number of initial requests and improving loading speeds. Any type of custom designs can be created for the<a href="http://inwebdeveloper.com/2011/12/02/sharrre-a-jquery-plugin-for-sharing-buttons/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/12/02/sharrre-a-jquery-plugin-for-sharing-buttons/' title='Sharrre: A jQuery plugin for sharing buttons'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/12/02/sharrre-a-jquery-plugin-for-sharing-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud9 IDE: allows you to write and access your code anywhere, anytime</title>
		<link>http://inwebdeveloper.com/2011/11/29/cloud9-ide-allows-you-to-write-and-access-your-code-anywhere-anytime/</link>
		<comments>http://inwebdeveloper.com/2011/11/29/cloud9-ide-allows-you-to-write-and-access-your-code-anywhere-anytime/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 03:48:38 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Cloud9 IDE]]></category>
		<category><![CDATA[Coffeescript]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1401</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/open-source/" title="View all posts in Open Source" rel="category tag">Open Source</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a>, <a href="http://inwebdeveloper.com/category/ruby/" title="View all posts in Ruby" rel="category tag">Ruby</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/cloud9-ide/" rel="tag">Cloud9 IDE</a>, <a href="http://inwebdeveloper.com/tag/coffeescript/" rel="tag">Coffeescript</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a>, <a href="http://inwebdeveloper.com/tag/ruby/" rel="tag">Ruby</a></p>Cloud9 is a state-of-the-art IDE that runs in your browser and lives in the cloud, allowing you to run, debug and deploy applications from anywhere, anytime. A complete game-changer that will change the way we develop applications forever. Cloud9 IDE supports several languages with Javascript and HTML/CSS currently being the core ones. We also support<a href="http://inwebdeveloper.com/2011/11/29/cloud9-ide-allows-you-to-write-and-access-your-code-anywhere-anytime/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/11/29/cloud9-ide-allows-you-to-write-and-access-your-code-anywhere-anytime/' title='Cloud9 IDE: allows you to write and access your code anywhere, anytime'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/11/29/cloud9-ide-allows-you-to-write-and-access-your-code-anywhere-anytime/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MyWebSQL: Desktop Like Web-Based MySQL Admin Tool</title>
		<link>http://inwebdeveloper.com/2011/11/14/mywebsql-desktop-like-web-based-mysql-admin-tool/</link>
		<comments>http://inwebdeveloper.com/2011/11/14/mywebsql-desktop-like-web-based-mysql-admin-tool/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 22:24:39 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[Freeware]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[MySQL admin tool]]></category>
		<category><![CDATA[MyWebSql]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[web-based MySQL]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1380</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>, <a href="http://inwebdeveloper.com/category/mysql/" title="View all posts in MySQL" rel="category tag">MySQL</a>, <a href="http://inwebdeveloper.com/category/open-source/" title="View all posts in Open Source" rel="category tag">Open Source</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/mysql/" rel="tag">MySQL</a>, <a href="http://inwebdeveloper.com/tag/mysql-admin-tool/" rel="tag">MySQL admin tool</a>, <a href="http://inwebdeveloper.com/tag/mywebsql/" rel="tag">MyWebSql</a>, <a href="http://inwebdeveloper.com/tag/open-source/" rel="tag">Open Source</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a>, <a href="http://inwebdeveloper.com/tag/phpmyadmin/" rel="tag">phpMyAdmin</a>, <a href="http://inwebdeveloper.com/tag/sqlite/" rel="tag">SQLite</a>, <a href="http://inwebdeveloper.com/tag/web-based-mysql/" rel="tag">web-based MySQL</a></p>For MySQL users, phpMyAdmin -the popular MySQL admin tool-, is probably one of the most-used apps unless you are fan of a desktop MySQL admin tool. MyWebSQL is an exciting open source alternative to both as it is a web-based MySQL (and SQLite) manager with a desktop-like functionality. It is built with PHP and, with<a href="http://inwebdeveloper.com/2011/11/14/mywebsql-desktop-like-web-based-mysql-admin-tool/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/11/14/mywebsql-desktop-like-web-based-mysql-admin-tool/' title='MyWebSQL: Desktop Like Web-Based MySQL Admin Tool'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/11/14/mywebsql-desktop-like-web-based-mysql-admin-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yioop! &#8211; Open Source PHP Search Engine</title>
		<link>http://inwebdeveloper.com/2011/09/01/yioop-open-source-php-search-engine/</link>
		<comments>http://inwebdeveloper.com/2011/09/01/yioop-open-source-php-search-engine/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 22:10:01 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1338</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/mysql/" title="View all posts in MySQL" rel="category tag">MySQL</a>, <a href="http://inwebdeveloper.com/category/open-source/" title="View all posts in Open Source" rel="category tag">Open Source</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/mysql/" rel="tag">MySQL</a>, <a href="http://inwebdeveloper.com/tag/open-source/" rel="tag">Open Source</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a></p>Yioop! is an open source search engine built with PHP and uses MySQL or SQLite for storing the data. It can be configured to crawl any page it finds by following links or limited to any given number of URLs and used as an in-site search engine (like Google Custom Search). A standard setup can<a href="http://inwebdeveloper.com/2011/09/01/yioop-open-source-php-search-engine/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/09/01/yioop-open-source-php-search-engine/' title='Yioop! - Open Source PHP Search Engine'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/09/01/yioop-open-source-php-search-engine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SFBrowser: File Manager With PHP &amp; jQuery</title>
		<link>http://inwebdeveloper.com/2011/08/11/sfbrowser-file-manager-with-php-jquery/</link>
		<comments>http://inwebdeveloper.com/2011/08/11/sfbrowser-file-manager-with-php-jquery/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 19:25:00 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SFBrowser]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1302</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/jquery/" title="View all posts in jQuery" rel="category tag">jQuery</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/jquery/" rel="tag">jQuery</a>, <a href="http://inwebdeveloper.com/tag/open-source/" rel="tag">Open Source</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a>, <a href="http://inwebdeveloper.com/tag/sfbrowser/" rel="tag">SFBrowser</a></p>SFBrowser is an open source application, built with PHP and jQuery, for managing files online with an Ajaxed interface. Besides listing files and folders, it can upload, delete, rename and preview them. Uploading can be accomplished via an Ajaxed or Flash-based uploader (queued multiple uploads, progress bar, canceling, selection filtering, size filtering). The functionality can<a href="http://inwebdeveloper.com/2011/08/11/sfbrowser-file-manager-with-php-jquery/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/08/11/sfbrowser-file-manager-with-php-jquery/' title='SFBrowser: File Manager With PHP & jQuery'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/08/11/sfbrowser-file-manager-with-php-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Template CMS: Free PHP CMS Project</title>
		<link>http://inwebdeveloper.com/2011/05/21/template-cms-free-php-cms-project/</link>
		<comments>http://inwebdeveloper.com/2011/05/21/template-cms-free-php-cms-project/#comments</comments>
		<pubDate>Sat, 21 May 2011 04:37:38 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=1009</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/cms/" title="View all posts in CMS" rel="category tag">CMS</a>, <a href="http://inwebdeveloper.com/category/freeware/" title="View all posts in Freeware" rel="category tag">Freeware</a>, <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/cms/" rel="tag">CMS</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a></p>Template CMS is a fast and lighweight content management system. It is a free PHP CMS project, which allows you to easily create a promo site, satellite, personal page of a person who has no experience in PHP or HTML. Features of Template CMS: - Esy to install, use and update - Simple multilingual administration<a href="http://inwebdeveloper.com/2011/05/21/template-cms-free-php-cms-project/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/05/21/template-cms-free-php-cms-project/' title='Template CMS: Free PHP CMS Project'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/05/21/template-cms-free-php-cms-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonfire: Admin Interface CodeIgniter Based</title>
		<link>http://inwebdeveloper.com/2011/05/13/bonfire-admin-interface-codeigniter-based/</link>
		<comments>http://inwebdeveloper.com/2011/05/13/bonfire-admin-interface-codeigniter-based/#comments</comments>
		<pubDate>Fri, 13 May 2011 08:57:13 +0000</pubDate>
		<dc:creator>WebAdmin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Bonfire]]></category>
		<category><![CDATA[CodeIgniter]]></category>

		<guid isPermaLink="false">http://inwebdeveloper.com/?p=984</guid>
		<description><![CDATA[<table cellpadding='10'><tr><td valign='top' align='left'><p>Categories: <a href="http://inwebdeveloper.com/category/php/" title="View all posts in PHP" rel="category tag">PHP</a></p><p>Tags: <a href="http://inwebdeveloper.com/tag/bonfire/" rel="tag">Bonfire</a>, <a href="http://inwebdeveloper.com/tag/codeigniter/" rel="tag">CodeIgniter</a>, <a href="http://inwebdeveloper.com/tag/php/" rel="tag">PHP</a></p>Bonfire, is a set of tools (like a ready-to-use user management system, e-mail queue, database backup), all built inside an elegant and customizable UI. Bonfire helps you build CodeIgniter-based PHP web applications even faster, by providing powerful tools and a beautiful interface you won&#8217;t be ashamed to show your client. - Ready to customize Admin<a href="http://inwebdeveloper.com/2011/05/13/bonfire-admin-interface-codeigniter-based/">&#160;&#160;[ Read More ]</a><table width='100%'><tr><td align=right><p><b>(<a href='http://inwebdeveloper.com/2011/05/13/bonfire-admin-interface-codeigniter-based/' title='Bonfire: Admin Interface CodeIgniter Based'>Read more...</a>)</b></p></td></tr></table></td></tr></table>]]></description>
		<wfw:commentRss>http://inwebdeveloper.com/2011/05/13/bonfire-admin-interface-codeigniter-based/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

