<?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>Edmonds Commerce &#187; curl</title>
	<atom:link href="http://www.edmondscommerce.co.uk/category/curl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edmondscommerce.co.uk</link>
	<description>Freelance PHP Ecommerce and SEO Developer in the UK</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:14:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>PHP, cURL, CURLOPT FOLLOWLOCATION and open basedir Or Safe Mode</title>
		<link>http://www.edmondscommerce.co.uk/curl/php-curl-curlopt_followlocation-and-open_basedir-or-safe-mode/</link>
		<comments>http://www.edmondscommerce.co.uk/curl/php-curl-curlopt_followlocation-and-open_basedir-or-safe-mode/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 13:09:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[curl]]></category>

		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/curl/php-curl-curlopt_followlocation-and-open_basedir-or-safe-mode/</guid>
		<description><![CDATA[If you are trying to get a curl script which needs follow on location functionality to run on a server which has either open_basedir or safe mode enabled you will get an error message similar to the following: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set After a bit of digging, [...]]]></description>
		<wfw:commentRss>http://www.edmondscommerce.co.uk/curl/php-curl-curlopt_followlocation-and-open_basedir-or-safe-mode/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>PHP Save Images Using cURL</title>
		<link>http://www.edmondscommerce.co.uk/php/php-save-images-using-curl/</link>
		<comments>http://www.edmondscommerce.co.uk/php/php-save-images-using-curl/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 14:53:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/php/php-save-images-using-curl/</guid>
		<description><![CDATA[Some hosts disabled the ini setting allow_url_fopen. This also means that the ability to easily grab images by calling imagecreatefromjpeg($img) where $img is a url for an external image does not work. This is a shame as this technique is pretty easy.. PLAIN TEXT PHP: $remote_img = 'http://www.somwhere.com/images/image.jpg'; $img = imagecreatefromjpeg&#40;$remote_img&#41;; $path = 'images/'; imagejpeg&#40;$img, [...]]]></description>
		<wfw:commentRss>http://www.edmondscommerce.co.uk/php/php-save-images-using-curl/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>Using cURL with XAMPP</title>
		<link>http://www.edmondscommerce.co.uk/curl/using-curl-with-xampp/</link>
		<comments>http://www.edmondscommerce.co.uk/curl/using-curl-with-xampp/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 11:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[curl]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/curl/using-curl-with-xampp/</guid>
		<description><![CDATA[If you have read through this blog, you will realise that I am a big fan of the cURL library for PHP. Also, when using windows to code - I like to use the XAMPP package to give me easy access to an Apache, PHP and MySQL stack. So here is my quick guide to [...]]]></description>
		<wfw:commentRss>http://www.edmondscommerce.co.uk/curl/using-curl-with-xampp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Building Spiders: Grab Data, Post Forms and Interact with Web Sites Automatically</title>
		<link>http://www.edmondscommerce.co.uk/firefox/building-spiders-grab-data-post-forms-and-interact-with-web-sites-automatically/</link>
		<comments>http://www.edmondscommerce.co.uk/firefox/building-spiders-grab-data-post-forms-and-interact-with-web-sites-automatically/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 11:56:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[curl]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[spidering]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[screen scraping]]></category>
		<category><![CDATA[spider]]></category>

		<guid isPermaLink="false">http://www.edmondscommerce.co.uk/blog/firefox/building-spiders-grab-data-post-forms-and-interact-with-web-sites-automatically/</guid>
		<description><![CDATA[One of the most useful and powerful things you can do with PHP is to create a programme which will simulate a web browser and can grab data, post data to forms and generally interact with other web sites - automatically. For PHP to be able to work like this it must have the CURL [...]]]></description>
		<wfw:commentRss>http://www.edmondscommerce.co.uk/firefox/building-spiders-grab-data-post-forms-and-interact-with-web-sites-automatically/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

