<?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>Fahd Murtaza&#187; code</title>
	<atom:link href="http://www.fahdmurtaza.com/myblog/tag/code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fahdmurtaza.com/myblog</link>
	<description>Portfolio &#38; Blog</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:47:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Codeigniter &#8211; Clean URLs &#8211; Apache mod rewrite : Removing /index.php/ from URL in CodeIgniter Application</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/08/22/codeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/08/22/codeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html#comments</comments>
		<pubDate>Fri, 22 Aug 2008 07:09:18 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[igniter]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[mod rewrite]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[urls]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=417</guid>
		<description><![CDATA[This article discusses how you can enable mod rewrite to work with apache server so you can get those clean urls. CodeIgniter has built in support for clean urls so all you have to do is to activate this using the method described in this article.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F08%2F22%2Fcodeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F08%2F22%2Fcodeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=.htaccess,clean,code,CodeIgniter,igniter,mod,mod+rewrite,permalinks,rewrite,urls&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><em><strong>Note: Based on its popularity, updated on 6th june 2011 to clean up code for easy copy paste.</strong></em></p>
<p>OK readers, here is a simple method to achieve clean urls with your PHP application developed in CodeIgniter.</p>
<p>Please note that this method is applicable only to applications developed in CodeIgniter. Much of the content has been taken from CodeIgniter wiki but rewritten in my own way.</p>
<p>This article explains how to take away &#8220;index.php&#8221; from your CI application URLs. However, it does NOT remove the need for Index.php, which is the CI front controller i.e. even though Index.php will not appear in the URL, it still needs to be present at the top level of your site (above the /system/ directory).  To quote the User Guide,</p>
<p>You can easily remove this file by using a .htaccess file with some simple rules.</p>
<p>You need to perform the following steps to get this working:</p>
<ol>
<li>Create a .htaccess file to configure the rewrite engine</li>
<li>Set $config['index_page'] to an empty string</li>
<li>Make sure your apache uses the mod_rewrite module</li>
<li>Make sure apache is configured to accept needed .htaccess directives</li>
<li>Restart apache and test</li>
</ol>
<h2>1. Create your .htaccess file</h2>
<p>Create a new file named .htaccess and put it in your web directory</p>
<pre class="brush: plain">
RewriteEngine On
RewriteBase /
#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#&#039;system&#039; can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn&#039;t true it sends the
#request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

# If we don&#039;t have mod_rewrite installed, all 404&#039;s
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php</pre>
<p>Notes for Windows users:<br />
To create this file you must open Command Prompt and type:</p>
<pre class="brush: plain">copy con .htaccess [Enter]
[Press CTRL + Z]</pre>
<p>A blank .htaccess file will be created. Now you can edit it using Notepad or your favorite text editor and copy the script above.</p>
<p>Note: Most Windows editors will assume that you are attempting to save an .htaccess file as a file with an extension and no filename. The Crimson Editor can be used to create and save .htaccess files and other files that have no filename.</p>
<p>Note: If your site is placed in subfolder specify the path in the &#8220;RewriteBase /subfolder/&#8221; line.</p>
<h2>2. Set $config['index_page'] to an empty string</h2>
<p>Open your</p>
<p>system/application/config/config.php</p>
<p>and find the line that assigns $config['index_page'] a value, usually:</p>
<pre class="brush: plain">$config[&#039;index_page&#039;] = &amp;amp;amp;quot;index.php&amp;amp;amp;quot;;</pre>
<p>and change it to:</p>
<pre class="brush: plain">$config[&#039;index_page&#039;] = &#039;&#039;;</pre>
<p>Save the file.</p>
<h2>3. Make sure your apache has mod_rewrite activated</h2>
<p>This means that the apache must be configured to load the mod_rewrite module (or it might have it compiled-in). For module inclusion, usually you have to look for a line like this in httpd.conf or a file loaded by it (hint: use some quick file search utility to grep files with lines containing &#8216;rewrite&#8217; string):</p>
<pre class="brush: plain">
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
</pre>
<p>If you&#8217;re running Apache2 type</p>
<pre class="brush: plain">
a2enmod
</pre>
<p>in the console and when prompted</p>
<pre class="brush: plain">
rewrite
</pre>
<p>to enable mod_rewrite.</p>
<p>On a Windows machine this line might look this way:</p>
<pre class="brush: plain">
LoadModule rewrite_module modules/mod_rewrite.so
</pre>
<p>If it is commented out (# in front), make sure to uncomment it and save the file. Checking if the corresponding module exists may be a good idea as well (but it usually does).</p>
<h2>Make sure apache accepts needed .htaccess directives</h2>
<p>This means that apache is explicitly configured to allow .htaccess files to override those directives that you use in your .htaccess file from step 1. above.</p>
<p>It seems to be sufficient if you add these two lines to your  section where you configure the document root for your CI application:</p>
<pre class="brush: plain">#...
Options FollowSymLinks

AllowOverride FileInfo
#...</pre>
<p>There might be other Options listed, just make sure you have FollowSymLinks as well.</p>
<p>Should you get a 500 Internal Server Error, try the following syntax:</p>
<pre class="brush: plain">Options Indexes Includes FollowSymLinks MultiViews
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all</pre>
<h2>5. Restart apache and test your application</h2>
<p>Works? Congratulations!</p>
<p>Doesn&#8217;t work? Ehrrr… well, do not give up; equip yourself with patience, double check all steps above and if it still does not work, post on the forum giving all details of your setup.</p>
<h2>How does URL rewriting work?</h2>
<pre class="brush: plain">
&amp;amp;amp;lt;IfModule mod_rewrite.c&amp;amp;amp;gt;
...
&amp;amp;amp;lt;/IfModule&amp;amp;amp;gt;
</pre>
<p>Do what is inside only if Apache has the mod_rewrite feature (by in place compilation, or loaded module).</p>
<pre class="brush: plain">RewriteEngine On</pre>
<p>Activate the URL rewriting engine, if not already done (in main Apache configuration file.</p>
<pre class="brush: plain">RewriteBase /</pre>
<p>Define the part of the URL that won&#8217;t change nor be used for rewriting. In fact, this part will be removed before processing, and prepended after processing. This&#8217;s a good way to use subfolder-independent rewrite rules. For example, if your CodeIgniter index.php is placed in a virtual host directory, like /tests/, set RewriteBase to /tests/.</p>
<pre class="brush: plain">RewriteCond %{REQUEST_FILENAME} !-f</pre>
<p>Condition to meet for RewriteRule activation. Here, we test if the requested filename does not exist.</p>
<pre class="brush: plain">
RewriteCond %{REQUEST_FILENAME} !-d
</pre>
<p>Same as above, but we test for directory existence.</p>
<pre class="brush: plain">RewriteRule ^(.*)$ index.php/$1 [L]</pre>
<p>If RewriteCond conditions are met, this rule will be applied. It inserts index.php before the requested URI. The $1 represents the part of string enclosed by parentheses in left expression. The [L] means that this rule is the last one if rule is applied (thus stopping rewriting).</p>
<h2>Configuring mod_rewrite in the httpd.conf file</h2>
<p>The Apache mod_rewrite docs say</p>
<p>While URL manipulations in per-server context are really fast and efficient, per-directory rewrites are slow and inefficient. If you have access to your httpd.conf file, you&#8217;ll have better performance if you configure the rewrite rules in there.</p>
<p>You can add something like this to your httpd.conf:</p>
<pre class="brush: plain">RewriteEngine On
RewriteCond %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]</pre>
<p>Configuring mod_rewrite and virtual hosting with Apache 2.2</p>
<pre class="brush: plain">ServerName www.mydomain.com
DocumentRoot /path/to/ci/directory

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]</pre>
<p>Credits: http://codeigniter.com/wiki/mod_rewrite/</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F08%2F22%2Fcodeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/08/22/codeigniter-clean-urls-apache-mod-rewrite-removing-indexphp-from-url-in-codeigniter-application.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Mining the Web using PHP</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/03/04/mining-the-web-using-php.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/03/04/mining-the-web-using-php.html#comments</comments>
		<pubDate>Tue, 04 Mar 2008 10:59:32 +0000</pubDate>
		<dc:creator>farhan042</dc:creator>
				<category><![CDATA[data-mining]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[minind]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/03/04/mining-the-web-using-php.html</guid>
		<description><![CDATA[There are many ways for Extracting or fetching desired data or content from an html pages. During my work, i had to build a Miner to get news from multiple sites &#38; update a wordpress blog with the latest news, daily.I had many choices to accomplish this task, few of them are - Regular expressions [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F04%2Fmining-the-web-using-php.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F04%2Fmining-the-web-using-php.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=code,data-mining,minind,open,opensource,PHP,web&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>There are many ways  for Extracting or fetching desired data or content from an html pages. During my work, i had to build a Miner to get news from multiple sites &amp; update a wordpress blog with the latest news, daily.I had many choices to accomplish this task, few of them are<br />
- Regular expressions<br />
- PHP string functions.<br />
- Using DOM Parsing<br />
- Using Xpath.</p>
<p>First of all i used regular expressions to<span id="more-265"></span> extract data from a static html page.Which was really a nightmare for me.As there is not proper structure of page, it was really hard to extract news from specific tags.Some of them were in Div,some were in TD &amp; others in Li tags. After a long effort i couldn&#8217;t extract data using regular expressions.<br />
I thought to use some html parser, some of them are available on internet.I used it to get data of my choice, even it couldn&#8217;t get desired data, becuase of complexity of structure of page.After that i tried to use PHP string functions, like <em>str_replace</em>,Trim etc, to replace specific tags with known id, so that parsing can get easy. But still, to get desired content, it was really a mess to get to them.</p>
<p>Finally i used firebug to analyze the content of the page, to see the content holders, during which, i cam to find exact XPath location of desired content holder.<br />
XPath (XML Path Language) is a language for selecting nodes from an XML document. In addition, XPath may be used to compute values (strings, numbers, or boolean values) from the content of an XML document. but i wasn&#8217;t aware that Xpath can also be used with html pages, to parse the DOM tree of page.</p>
<p>finally, i got the exact path of Content holder, which had the latest news, daily updated. And i grabbed all the content from it.</p>
<p>I came to conclusion that in case of mining data from web, Xpath proved to be the best &amp; most efficient.</p>
<p>In case of updates, we don&#8217;t need anything, but only the content holder Xpath tree structure of the content &amp; we can get the content in single shot.Regular expression &amp; other ways were very inefficient &amp; time consuming.</p>
<p>Thanks to Farhan for sharing his valuable expertise with us on <a href="http://www.fahdmurtaza.com/myblog/" target="_blank"><em>Fahd Murtaza&#8217;s Blog. </em></a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F03%2F04%2Fmining-the-web-using-php.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/03/04/mining-the-web-using-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CodeIgniter: How to set your images path automatically for your site</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/02/13/codeigniter-how-to-set-your-images-path-automatically-for-your-site.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/02/13/codeigniter-how-to-set-your-images-path-automatically-for-your-site.html#comments</comments>
		<pubDate>Wed, 13 Feb 2008 15:49:29 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Development Software]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[igniter]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/02/13/codeigniter-how-to-set-your-images-path-automatically-for-your-site.html</guid>
		<description><![CDATA[Well I was thinking that the old source code I got from the other guy Nouman who was working on this Home Work Center Project that was and is being coded in CodeIgniter was not very much upto date. I fixed the Javascript issues; in fact a lot of them including the JavaScript date picker [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F13%2Fcodeigniter-how-to-set-your-images-path-automatically-for-your-site.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F13%2Fcodeigniter-how-to-set-your-images-path-automatically-for-your-site.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=code,CodeIgniter,igniter,open,OS,PHP,source&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Well I was thinking that the old source code I got from the other guy <em>Nouman</em> who was working on this <em>Home Work Center</em> Project that was and is being coded in <em><a href="http://codeigniter.com/" title="CodeIgniter" target="_blank">CodeIgniter</a> </em>was not very much upto date. I fixed the Javascript issues; in fact a lot of them including the JavaScript date picker calendar. It fits well, works on IE 6, IE7, Safari and Firefox; haven&#8217;t yet checked with others. But I am sure it will!. Anyhow the problem I was facing was that in different folders in Views for <em><a href="http://codeigniter.com/" title="CodeIgniter" target="_blank">CodeIgniter</a> </em>, if we are using images, we have to use relative URLs in most of the pages, which gets quite troublesome sometimes. As long as it is the <em><a href="http://codeigniter.com/" title="CodeIgniter" target="_blank">CodeIgniter</a> </em> I am working on, I don&#8217;t want to use my own includes having setting of the site because this is why we are using <em><a href="http://codeigniter.com/" title="CodeIgniter" target="_blank">CodeIgniter</a> </em>.</p>
<p><strong>Solution:</strong></p>
<p>So cutting short the details, if you want to use the site&#8217;s URL and relative paths according to your site&#8217;s <strong>base url</strong>, here is the solution use <a href="http://codeigniter.com/user_guide/helpers/url_helper.html">site_url()</a>. The link contains all the details you will need to use for your views and it also tells which helpers you need to load. <a href="http://codeigniter.com/user_guide/helpers/url_helper.html"><br />
</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F13%2Fcodeigniter-how-to-set-your-images-path-automatically-for-your-site.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/02/13/codeigniter-how-to-set-your-images-path-automatically-for-your-site.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A very good article for Screen scraping any webpage into RSS</title>
		<link>http://www.fahdmurtaza.com/myblog/2008/02/01/a-very-good-article-for-screen-scraping-any-webpage-into-rss.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2008/02/01/a-very-good-article-for-screen-scraping-any-webpage-into-rss.html#comments</comments>
		<pubDate>Fri, 01 Feb 2008 18:35:44 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[scraping]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/2008/02/01/a-very-good-article-for-screen-scraping-any-webpage-into-rss.html</guid>
		<description><![CDATA[I was looking for screen scraping a site for getting the download links off the site and I found this intersting tutorial. It makes you able to  get the content from a page and make it into RSS. Easily customizable thing. Just go for it. (Link on the full post.) http://www.phpit.net/article/screenscrap-rss/1/]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F01%2Fa-very-good-article-for-screen-scraping-any-webpage-into-rss.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F01%2Fa-very-good-article-for-screen-scraping-any-webpage-into-rss.html&amp;source=fahdmurtaza&amp;style=compact&amp;space=2&amp;hashtags=code,PHP,RSS,scraping,screen&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I was looking for screen scraping a site for getting the download links off the site and I found this intersting tutorial. It makes you able to  get the content from a page and make it into RSS. Easily customizable thing. Just go for it. (Link on the full post.) <span id="more-225"></span></p>
<p><a href="http://www.phpit.net/article/screenscrap-rss/1/" title="Screen scraping your way into RSS" target="_blank">http://www.phpit.net/article/screenscrap-rss/1/</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.fahdmurtaza.com%2Fmyblog%2F2008%2F02%2F01%2Fa-very-good-article-for-screen-scraping-any-webpage-into-rss.html&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2008/02/01/a-very-good-article-for-screen-scraping-any-webpage-into-rss.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

