<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Scraping Websites for Fun and Profit Part 2</title>
	<atom:link href="http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/</link>
	<description>Confessions of a Reformed Blackhat</description>
	<lastBuildDate>Thu, 29 Jul 2010 22:42:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dan</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-5651</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 29 Jul 2009 19:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-5651</guid>
		<description>Took a long time to find your site, but this did the trick.  The site I was trying to log into required additional data items (form &#039;names&#039;) for the data array.  I was able to discover the additional fields using the Web Developer toolbar and comparing the results to facebook.</description>
		<content:encoded><![CDATA[<p>Took a long time to find your site, but this did the trick.  The site I was trying to log into required additional data items (form &#8216;names&#8217;) for the data array.  I was able to discover the additional fields using the Web Developer toolbar and comparing the results to facebook.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: malini</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-4184</link>
		<dc:creator>malini</dc:creator>
		<pubDate>Sat, 06 Sep 2008 16:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-4184</guid>
		<description>hi...I have tried your code and i get this error:
Parse error: parse error, unexpected &#039;[&#039; in E:\Program Files\EasyPHP 2.0b1\www\http_get.php on line 6


here is my code:

</description>
		<content:encoded><![CDATA[<p>hi&#8230;I have tried your code and i get this error:<br />
Parse error: parse error, unexpected &#8216;[&#8216; in E:\Program Files\EasyPHP 2.0b1\www\http_get.php on line 6</p>
<p>here is my code:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickycakes</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-3804</link>
		<dc:creator>nickycakes</dc:creator>
		<pubDate>Wed, 09 Jul 2008 21:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-3804</guid>
		<description>yeah gotta have curl enabled =)</description>
		<content:encoded><![CDATA[<p>yeah gotta have curl enabled =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-3803</link>
		<dc:creator>Chip</dc:creator>
		<pubDate>Wed, 09 Jul 2008 21:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-3803</guid>
		<description>Sorry Dude, got it fixed. It is the php.ini under php5-cli is not setup properly. I have two php.ini, one under apache2 and one under php5-cli. The apache2 one already have the line &quot;extension=curl.so&quot; and mislead me thinking that I have it setting up correctly. I appended the line into the php5-cli php.ini file and is now working.</description>
		<content:encoded><![CDATA[<p>Sorry Dude, got it fixed. It is the php.ini under php5-cli is not setup properly. I have two php.ini, one under apache2 and one under php5-cli. The apache2 one already have the line &#8220;extension=curl.so&#8221; and mislead me thinking that I have it setting up correctly. I appended the line into the php5-cli php.ini file and is now working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-3801</link>
		<dc:creator>Chip</dc:creator>
		<pubDate>Wed, 09 Jul 2008 20:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-3801</guid>
		<description>Nicky,

Just wonder how you make it work. I brought the book and try to run the first couple of examples. But I got the

Fatal error: Call to undefined function curl_init() in /home/admin/php/LIB_http.
php on line 210

I check the LIB_http.php file, there is a line calling curl_init() but nowhere in the code define it.

Do I missing anything here?

Rgds,
Chip</description>
		<content:encoded><![CDATA[<p>Nicky,</p>
<p>Just wonder how you make it work. I brought the book and try to run the first couple of examples. But I got the</p>
<p>Fatal error: Call to undefined function curl_init() in /home/admin/php/LIB_http.<br />
php on line 210</p>
<p>I check the LIB_http.php file, there is a line calling curl_init() but nowhere in the code define it.</p>
<p>Do I missing anything here?</p>
<p>Rgds,<br />
Chip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickycakes</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-490</link>
		<dc:creator>nickycakes</dc:creator>
		<pubDate>Mon, 28 Jan 2008 17:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-490</guid>
		<description>Yeah, I looked closer a little later and found out that it does use regex.  However, you can use the str functions in php, which are much quicker.</description>
		<content:encoded><![CDATA[<p>Yeah, I looked closer a little later and found out that it does use regex.  However, you can use the str functions in php, which are much quicker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nohatter</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-488</link>
		<dc:creator>nohatter</dc:creator>
		<pubDate>Mon, 28 Jan 2008 14:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-488</guid>
		<description>Nice article, but i don&#039;t get your comment above, since regex is exactly what this library is using. I don&#039;t see any other way to parse. What am i missing here? 

&quot;Regular Expression functions in php, in addition to being hard to learn for a newbie, are stupidly inefficient and will slow your programs down, so you don’t want to use them for parsing websites anyway.&quot;</description>
		<content:encoded><![CDATA[<p>Nice article, but i don&#8217;t get your comment above, since regex is exactly what this library is using. I don&#8217;t see any other way to parse. What am i missing here? </p>
<p>&#8220;Regular Expression functions in php, in addition to being hard to learn for a newbie, are stupidly inefficient and will slow your programs down, so you don’t want to use them for parsing websites anyway.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickycakes</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-202</link>
		<dc:creator>nickycakes</dc:creator>
		<pubDate>Wed, 26 Dec 2007 06:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-202</guid>
		<description>yeah it really rocks, i love it</description>
		<content:encoded><![CDATA[<p>yeah it really rocks, i love it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Norton</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-192</link>
		<dc:creator>Robert Norton</dc:creator>
		<pubDate>Mon, 24 Dec 2007 06:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-192</guid>
		<description>Dude, I&#039;ve never seen that firefox add-on (the web dev toolbar) before, but it kicks ass. Thanks for the link.</description>
		<content:encoded><![CDATA[<p>Dude, I&#8217;ve never seen that firefox add-on (the web dev toolbar) before, but it kicks ass. Thanks for the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/comment-page-1/#comment-183</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Sun, 23 Dec 2007 10:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickycakes.com/scraping-websites-for-fun-and-profit-part-2/#comment-183</guid>
		<description>Very useful stuff Nicky, thanks a lot for sharing! :)</description>
		<content:encoded><![CDATA[<p>Very useful stuff Nicky, thanks a lot for sharing! <img src='http://www.nickycakes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
