<?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>Jasdev Sondh &#187; Web Development</title>
	<atom:link href="http://jasdev.sondh.net/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasdev.sondh.net</link>
	<description>Web Solutions through Technology</description>
	<lastBuildDate>Fri, 19 Aug 2011 15:40:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript &#8211; Opening Multiple Pages in an iFrame</title>
		<link>http://jasdev.sondh.net/2010/08/javascript-opening-multiple-pages-in-an-iframe/</link>
		<comments>http://jasdev.sondh.net/2010/08/javascript-opening-multiple-pages-in-an-iframe/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:35:30 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=146</guid>
		<description><![CDATA[Here&#8217;s a useful bit of javascript, that should help you action multiple web tasks which use the URL query string to past a parameter or two&#8230; Simply add your URLs to the &#8220;urls&#8221; array list and open the HTML file &#8230; <a href="http://jasdev.sondh.net/2010/08/javascript-opening-multiple-pages-in-an-iframe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F08%2Fjavascript-opening-multiple-pages-in-an-iframe%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F08%2Fjavascript-opening-multiple-pages-in-an-iframe%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>Here&#8217;s a useful bit of javascript, that should help you action multiple web tasks which use the URL query string to past a parameter or two&#8230; Simply add your URLs to the &#8220;urls&#8221; array list and open the HTML file in a web browser.</p>
<pre>&lt;div id="count"&gt;&lt;/div&gt;
&lt;iframe name="ifrm" id="ifrm" src="http://www.jasdev.co.uk" width="90%" height="90%"&gt;&lt;/iframe&gt;

&lt;script type="text/javascript"&gt;

var i = 0;
var urls = new Array();
urls[0] = 'http://www.bbc.co.uk';
urls[1] = 'http://www.bigfanta.com';
urls[2] = 'http://www.bigtango.com';
urls[3] = 'http://www.jasdev.co.uk';

next();

function next() {
if ( window.frames["ifrm"] )  {
window.frames["ifrm"].location = urls[i];
}
setTimeout("next()",3000);
i++;
document.getElementById("count").innerHTML = i+' of '+urls.length;
}
&lt;/script&gt;</pre>
<div class="shr-publisher-146"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2010/08/javascript-opening-multiple-pages-in-an-iframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Automator Script &#8211; Download Assets using a text file</title>
		<link>http://jasdev.sondh.net/2010/08/mac-automator-script-download-assets-using-a-text-file/</link>
		<comments>http://jasdev.sondh.net/2010/08/mac-automator-script-download-assets-using-a-text-file/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 08:24:57 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=135</guid>
		<description><![CDATA[If you have web assets, such as images, pdfs, etc. which you wish to download as part of a website migrate project, where you don&#8217;t have access to the FTP account you may be stuck downloading them one by one&#8230; &#8230; <a href="http://jasdev.sondh.net/2010/08/mac-automator-script-download-assets-using-a-text-file/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F08%2Fmac-automator-script-download-assets-using-a-text-file%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F08%2Fmac-automator-script-download-assets-using-a-text-file%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>If you have web assets, such as images, pdfs, etc. which you wish to download as part of a website migrate project, where you don&#8217;t have access to the FTP account you may be stuck downloading them one by one&#8230; Unless you are on a mac, using the attached automator script (a tool available with mac osx). You can create a text file which contain all the full URLs of the web asset you require for your project, one URL per line and run the script to download them to your mac, with a few simply clicks. Download the script and let me know if it&#8217;s useful to you and your project.</p>
<p><a href='http://jasdev.sondh.net/wp-content/uploads/2011/08/filelist-downloader.zip'>filelist-downloader</a></p>
<div class="shr-publisher-135"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2010/08/mac-automator-script-download-assets-using-a-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htaccess &#8211; changing webroot folder</title>
		<link>http://jasdev.sondh.net/2010/07/htaccess-changing-webroot-folder/</link>
		<comments>http://jasdev.sondh.net/2010/07/htaccess-changing-webroot-folder/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 11:13:35 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=129</guid>
		<description><![CDATA[Ever wondered how to change the webroot of the web hosting package? Maybe you have two domains mapped to a single web hosting package, but you want both domains to act independently&#8230; Well you can with a .htaccess file in &#8230; <a href="http://jasdev.sondh.net/2010/07/htaccess-changing-webroot-folder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhtaccess-changing-webroot-folder%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhtaccess-changing-webroot-folder%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>Ever wondered how to change the webroot of the web hosting package? Maybe you have two domains mapped to a single web hosting package, but you want both domains to act independently&#8230; Well you can with a .htaccess file in your public_html folder. Simply create a blank text file called &#8220;.htaccess&#8221; (if you don&#8217;t already have one) and add the following code:</p>
<pre>
# first domain
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?yourfirstdomain.com$
RewriteCond %{REQUEST_URI} !^/yourfirstdomain_folder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /yourfirstdomain_folder/$1
RewriteCond %{HTTP_HOST} ^(www.)?yourfirstdomain.com$
RewriteRule ^(/)?$ yourfirstdomain_folder/index.php [L]

# second domain
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?yourseconddomain.com$
RewriteCond %{REQUEST_URI} !^/yourseconddomain_folder/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /yourseconddomain_folder/$1
RewriteCond %{HTTP_HOST} ^(www.)?yourseconddomain.com$
RewriteRule ^(/)?$ yourseconddomain_folder/index.php [L]
</pre>
<div class="shr-publisher-129"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2010/07/htaccess-changing-webroot-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htaccess redirects</title>
		<link>http://jasdev.sondh.net/2010/07/htaccess-redirects/</link>
		<comments>http://jasdev.sondh.net/2010/07/htaccess-redirects/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 14:30:53 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[redirects]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=105</guid>
		<description><![CDATA[I find the best way to setup redirects of websites is to use the .htaccess file. It a plain text file which can help you get enhanced features on your website, one of them being 301 redirects. 301 redirects are &#8230; <a href="http://jasdev.sondh.net/2010/07/htaccess-redirects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhtaccess-redirects%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhtaccess-redirects%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>I find the best way to setup redirects of websites is to use the .htaccess file. It a plain text file which can help you get enhanced features on your website, one of them being 301 redirects. 301 redirects are used to redirect visitor&#8217;s URL requests if the URL has been permanently moved, and thus are great to let Google and other search engines know of structural changes and minimising the risk losing your ranking.</p>
<p>Here are some useful examples:</p>
<p>Domain Redirects</p>
<pre>
RewriteCond %{HTTP_HOST} ^(.*)yoursite.net [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]

RewriteCond %{HTTP_HOST} ^(.*)yoursite.co.uk [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]

RewriteCond %{HTTP_HOST} ^(.*)yousite.mobi [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
</pre>
<p>Automatically add &#8220;www&#8221; to your URLs</p>
<pre>
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
</pre>
<p>Sub Domain redirects</p>
<pre>
RewriteCond %{HTTP_HOST} ^(.*)sub.yoursite.com [NC]
RewriteRule ^(.*)$ https://www.yoursite.com/sub/$1 [L,R=301]
</pre>
<p>Switch to SSL URLs for specific folders</p>
<pre>
RewriteCond %{HTTPS} off
RewriteRule ^folder1(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteCond %{HTTPS} off
RewriteRule ^folder2(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</pre>
<p>Redirect all contain in specific folder</p>
<pre>
redirectMatch 301 ^/foldername/ https://www.yoursite.com/newfolder/
</pre>
<div class="shr-publisher-105"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2010/07/htaccess-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to view ZIP file contents on Mac without extracting files</title>
		<link>http://jasdev.sondh.net/2010/07/how-to-view-zip-file-contents-on-mac-without-extracting-files/</link>
		<comments>http://jasdev.sondh.net/2010/07/how-to-view-zip-file-contents-on-mac-without-extracting-files/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 13:14:36 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=84</guid>
		<description><![CDATA[Viewing the contents of a ZIP file on a Mac without extracting the ZIP content has been missing from the basic functionality available on a standard OS X installation. Now you can download a small freeware plug-in for &#8216;QuickLook&#8217; which &#8230; <a href="http://jasdev.sondh.net/2010/07/how-to-view-zip-file-contents-on-mac-without-extracting-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhow-to-view-zip-file-contents-on-mac-without-extracting-files%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2010%2F07%2Fhow-to-view-zip-file-contents-on-mac-without-extracting-files%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>Viewing the contents of a ZIP file on a Mac without extracting the ZIP content has been missing from the basic functionality available on a standard OS X installation. Now you can download a small freeware plug-in for &#8216;QuickLook&#8217; which fixes this issue. Allowing you to view the contents before extracting the complete ZIP file.</p>
<p>View the developer&#8217;s website for the download and installation instruction. Tested on Mac OS X Snow Leopard.</p>
<p><a href="http://d.hatena.ne.jp/t_trace/20071125/p2" target="_blank">http://d.hatena.ne.jp/t_trace/20071125/p2</a></p>
<div class="shr-publisher-84"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2010/07/how-to-view-zip-file-contents-on-mac-without-extracting-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get Your FREE Website Planning Guide</title>
		<link>http://jasdev.sondh.net/2009/12/get-your-free-website-planning-guide/</link>
		<comments>http://jasdev.sondh.net/2009/12/get-your-free-website-planning-guide/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 11:52:08 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=45</guid>
		<description><![CDATA[BigFanta Ltd has made available a newly compiled website planning guide, including sections on: Planning Your Website Building Your Website Marketing Your Website Improving Your Website This provide usefully information on your to structure, built and most importantly marketing your &#8230; <a href="http://jasdev.sondh.net/2009/12/get-your-free-website-planning-guide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2009%2F12%2Fget-your-free-website-planning-guide%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2009%2F12%2Fget-your-free-website-planning-guide%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>BigFanta Ltd has made available a newly compiled website planning guide, including sections on:</p>
<ol>
<li>Planning Your Website</li>
<li>Building Your Website</li>
<li>Marketing Your Website</li>
<li>Improving Your Website</li>
</ol>
<p>This provide usefully information on your to structure, built and most importantly marketing your website. Having a feature/media rich website is unless you have traffic to generate revenue. This may be through sales, memberships, advertisements, etc. Traffic generation in itself is a huge field of possible solutions, from SEO, Internet Marketing, Offline and Online Advertisements. Therefore along with BigFanta Website Planning Guide, you also get an additional eBook &#8220;Online Traffic Generation Methods&#8221;.</p>
<p><a title="Webiste Planning Guide and Traffic Generation" href="http://www.bigfanta.com" target="_blank">Get Them Now Free</a></p>
<div class="shr-publisher-45"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2009/12/get-your-free-website-planning-guide/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>SQL query for WordPress Posts</title>
		<link>http://jasdev.sondh.net/2009/11/sql-query-for-wordpress-posts/</link>
		<comments>http://jasdev.sondh.net/2009/11/sql-query-for-wordpress-posts/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 20:50:16 +0000</pubDate>
		<dc:creator>Jasdev Sondh</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jasdev.sondh.net/?p=35</guid>
		<description><![CDATA[I have been trying to write a SQL select query for getting the all the posts made in wordpress blog (to create a latest news banner). This seem easy enough, doesn&#8217;t it. The problems arose due to the post revising &#8230; <a href="http://jasdev.sondh.net/2009/11/sql-query-for-wordpress-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' shr_layout='button_count' shr_showfaces='false' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2009%2F11%2Fsql-query-for-wordpress-posts%2F'></a><a class='shareaholic-googleplusone' shr_size='medium' shr_count='true' shr_href='http%3A%2F%2Fjasdev.sondh.net%2F2009%2F11%2Fsql-query-for-wordpress-posts%2F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop --><p>I have been trying to write a SQL select query for getting the all the posts made in wordpress blog (to create a latest news banner). This seem easy enough, doesn&#8217;t it. The problems arose due to the post revising done by the wordpress blog application, this was just added a layer of confusion. The wordpress blog database stores multiple records for a single post, one record each saved version of the post. However removing this layer, I found that a simple select query will do the job nicely, and here it is:</p>
<p><code>SELECT * FROM 'wp_posts' WHERE post_status='publish' order by post_date DESC</code></p>
<p>Nice and Simple <img src='http://jasdev.sondh.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="shr-publisher-35"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://jasdev.sondh.net/2009/11/sql-query-for-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

