<?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 for A Collection of Thoughts</title>
	<atom:link href="http://www.paul-norman.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paul-norman.co.uk</link>
	<description>PHP, MySQL, Coding, Javascript, HTML, CSS</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:20:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on Asynchronous cURL Requests by 86er &#187; 使用PHP进行异步HTTP请求</title>
		<link>http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/comment-page-1/#comment-509</link>
		<dc:creator>86er &#187; 使用PHP进行异步HTTP请求</dc:creator>
		<pubDate>Mon, 06 Feb 2012 02:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/#comment-509</guid>
		<description>[...] http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/" rel="nofollow">http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Stuart Turner</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-482</link>
		<dc:creator>Stuart Turner</dc:creator>
		<pubDate>Sat, 14 Jan 2012 10:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-482</guid>
		<description>Many thanks for providing a new version to cope with Google&#039;s recent change.</description>
		<content:encoded><![CDATA[<p>Many thanks for providing a new version to cope with Google&#8217;s recent change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Paul Norman</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-480</link>
		<dc:creator>Paul Norman</dc:creator>
		<pubDate>Fri, 13 Jan 2012 17:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-480</guid>
		<description>Hi Gobinath,

Seems Google has changed their system a bit and the Lon / Lat handling has been updated as has the HTML output.

Hopefully this new simplified version will work well! (for a while...)

Cheers,

Paul</description>
		<content:encoded><![CDATA[<p>Hi Gobinath,</p>
<p>Seems Google has changed their system a bit and the Lon / Lat handling has been updated as has the HTML output.</p>
<p>Hopefully this new simplified version will work well! (for a while&#8230;)</p>
<p>Cheers,</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Gobinath</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-479</link>
		<dc:creator>Gobinath</dc:creator>
		<pubDate>Fri, 13 Jan 2012 05:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-479</guid>
		<description>Hi,

I have used your code for distance calculation for past 3 months, from 12-1-2012 onwards its not working in my server, kindly give me any idea asap.

Siva</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have used your code for distance calculation for past 3 months, from 12-1-2012 onwards its not working in my server, kindly give me any idea asap.</p>
<p>Siva</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Asynchronous cURL Requests by Paul Norman</title>
		<link>http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/comment-page-1/#comment-478</link>
		<dc:creator>Paul Norman</dc:creator>
		<pubDate>Sat, 10 Dec 2011 21:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/#comment-478</guid>
		<description>@Brad, you can use exec assuming you have the correct system permissions (and a framework / script that is CLI happy) and append something like &quot;&gt; /dev/null 2&gt;/dev/null &amp;&quot; to your exec call to make it asynchronous (re-routes stdio and stderr to null values and makes the process &#039;background&#039;). As to the overhead? I&#039;m not sure what you mean, but I&#039;d imagine in real terms any resource / speed difference is minimal. cURL also makes it trivial to pass GET / POST variables to the script for security / to stop external users triggering the script. If you are using a shared server I&#039;d say giving +x permissions to a script available to the standard web user poses a greater potential for abuse...

There&#039;s another nice exec example here: &lt;a href=&quot;http://stackoverflow.com/questions/45953/php-execute-a-background-process#45966&quot; rel=&quot;nofollow&quot;&gt;http://stackoverflow.com/questions/45953/php-execute-a-background-process#45966&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@Brad, you can use exec assuming you have the correct system permissions (and a framework / script that is CLI happy) and append something like &#8220;&gt; /dev/null 2&gt;/dev/null &amp;&#8221; to your exec call to make it asynchronous (re-routes stdio and stderr to null values and makes the process &#8216;background&#8217;). As to the overhead? I&#8217;m not sure what you mean, but I&#8217;d imagine in real terms any resource / speed difference is minimal. cURL also makes it trivial to pass GET / POST variables to the script for security / to stop external users triggering the script. If you are using a shared server I&#8217;d say giving +x permissions to a script available to the standard web user poses a greater potential for abuse&#8230;</p>
<p>There&#8217;s another nice exec example here: <a href="http://stackoverflow.com/questions/45953/php-execute-a-background-process#45966" rel="nofollow">http://stackoverflow.com/questions/45953/php-execute-a-background-process#45966</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Asynchronous cURL Requests by Brad</title>
		<link>http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/comment-page-1/#comment-477</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Fri, 09 Dec 2011 21:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/06/asynchronous-curl-requests/#comment-477</guid>
		<description>Wouldn&#039;t a better option to be to use exec and call the php file directly? With this technique, you&#039;re incurring a lot of extra overhead as well as opening up a &quot;background&quot; script to the abuse of the internet at large.</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t a better option to be to use exec and call the php file directly? With this technique, you&#8217;re incurring a lot of extra overhead as well as opening up a &#8220;background&#8221; script to the abuse of the internet at large.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spin Text For SEO &#8211; A PHP Spinner by Angelo Bonavera</title>
		<link>http://www.paul-norman.co.uk/2009/06/spin-text-for-seo/comment-page-1/#comment-471</link>
		<dc:creator>Angelo Bonavera</dc:creator>
		<pubDate>Wed, 16 Nov 2011 13:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/06/spin-text-for-seo/#comment-471</guid>
		<description>Great spinner. nested and everything. The spinning programs are expensive to and this is free... very affordable websites utility script</description>
		<content:encoded><![CDATA[<p>Great spinner. nested and everything. The spinning programs are expensive to and this is free&#8230; very affordable websites utility script</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Paul Norman</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-457</link>
		<dc:creator>Paul Norman</dc:creator>
		<pubDate>Fri, 04 Nov 2011 21:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-457</guid>
		<description>Hi Folarin,

Sorry for the late response, but I’ve been quite ill recently. I&#039;m not 100% sure what you are asking for here. If you want to check the distance of one location to 5 others then simply call it 5 times. But if you want to input 5 locations and calculate the route distance you&#039;ll need to format your destination differently, for example:

get_driving_information(&#039;edinburgh&#039;, &#039;preston+to:london+to:arundel&#039;);

and this will simply return one figure for the whole trip.

Good luck!

Paul</description>
		<content:encoded><![CDATA[<p>Hi Folarin,</p>
<p>Sorry for the late response, but I’ve been quite ill recently. I&#8217;m not 100% sure what you are asking for here. If you want to check the distance of one location to 5 others then simply call it 5 times. But if you want to input 5 locations and calculate the route distance you&#8217;ll need to format your destination differently, for example:</p>
<p>get_driving_information(&#8216;edinburgh&#8217;, &#8216;preston+to:london+to:arundel&#8217;);</p>
<p>and this will simply return one figure for the whole trip.</p>
<p>Good luck!</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Paul Norman</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-456</link>
		<dc:creator>Paul Norman</dc:creator>
		<pubDate>Fri, 04 Nov 2011 21:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-456</guid>
		<description>Hi Chamu,

Sorry for the late response, but I&#039;ve been quite ill recently. You&#039;re not the first person to say that and all I can think of is that it&#039;s something to do with Google detecting your server&#039;s IP address and determining that you are not allowed to use their service in that way in that location. Where is your server out of curiosity?

Cheers,

Paul</description>
		<content:encoded><![CDATA[<p>Hi Chamu,</p>
<p>Sorry for the late response, but I&#8217;ve been quite ill recently. You&#8217;re not the first person to say that and all I can think of is that it&#8217;s something to do with Google detecting your server&#8217;s IP address and determining that you are not allowed to use their service in that way in that location. Where is your server out of curiosity?</p>
<p>Cheers,</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spin Text For SEO &#8211; A PHP Spinner by how to seo</title>
		<link>http://www.paul-norman.co.uk/2009/06/spin-text-for-seo/comment-page-1/#comment-455</link>
		<dc:creator>how to seo</dc:creator>
		<pubDate>Thu, 03 Nov 2011 15:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/06/spin-text-for-seo/#comment-455</guid>
		<description>I just could not depart your web site before suggesting that I extremely loved the usual info a person provide for your guests? Is going to be again continuously to investigate cross-check new posts</description>
		<content:encoded><![CDATA[<p>I just could not depart your web site before suggesting that I extremely loved the usual info a person provide for your guests? Is going to be again continuously to investigate cross-check new posts</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Chamu</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-453</link>
		<dc:creator>Chamu</dc:creator>
		<pubDate>Wed, 02 Nov 2011 04:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-453</guid>
		<description>Hi Paul,


Thanks for the code, The code was working in local server but is not working in the server when uploaded.

it is going to the exception could not find route, 
Could you please help?

Thanks
Chamu</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>Thanks for the code, The code was working in local server but is not working in the server when uploaded.</p>
<p>it is going to the exception could not find route,<br />
Could you please help?</p>
<p>Thanks<br />
Chamu</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Google to Calculate Driving Distance / Time in PHP by Folarin</title>
		<link>http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/comment-page-1/#comment-450</link>
		<dc:creator>Folarin</dc:creator>
		<pubDate>Thu, 27 Oct 2011 16:24:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.paul-norman.co.uk/2009/07/using-google-to-calculate-driving-distance-time-in-php/#comment-450</guid>
		<description>Hi Paul,

Firstly, i appreciate your effort on this Php script that help to calculate distance in a flexible way.

Secondly, i have problem which you might be able to help out.

I&#039;m trying to calculate distance between one postcode and multiple postcode generated from database but i did not get any result.

One to one postcode or town work perfectly but one to many postcode is not working for me. Please, if you have an idea on this issue, i will be very grateful.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>Firstly, i appreciate your effort on this Php script that help to calculate distance in a flexible way.</p>
<p>Secondly, i have problem which you might be able to help out.</p>
<p>I&#8217;m trying to calculate distance between one postcode and multiple postcode generated from database but i did not get any result.</p>
<p>One to one postcode or town work perfectly but one to many postcode is not working for me. Please, if you have an idea on this issue, i will be very grateful.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

