<?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>3cc Internet &#187; Google</title>
	<atom:link href="http://www.3cc.org/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.3cc.org</link>
	<description>Simplifying sites</description>
	<lastBuildDate>Sat, 31 Dec 2011 15:51:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using Google Maps, Geocoding and PHP to find the distance between UK Postcodes</title>
		<link>http://www.3cc.org/2010/08/using-google-maps-geocoding-and-php-to-find-the-distance-between-uk-postcodes/</link>
		<comments>http://www.3cc.org/2010/08/using-google-maps-geocoding-and-php-to-find-the-distance-between-uk-postcodes/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 15:57:11 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[postcodes]]></category>

		<guid isPermaLink="false">http://www.3cc.org/?p=140</guid>
		<description><![CDATA[If you&#8217;re looking to make any kind of radius checker, delivery calculator etc, you will need to have some method of calculating this distance. Unfortunately for us in the UK, Royal Mail keep a tight grip on postcode data. As a result, the best low-budget way of finding postcodes is by using the Google Maps [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking to make any kind of radius checker, delivery calculator etc, you will need to have some method of calculating this distance. Unfortunately for us in the UK, Royal Mail keep a tight grip on postcode data.</p>
<p>As a result, the best low-budget way of finding postcodes is by using the Google Maps api &#8211; which in itself isn&#8217;t 100% accurate (but good enough).</p>
<p>So we can use the following code:</p>
<pre class="brush:php">&lt;?php
// Specify Postcodes to Geocode
$postcode1 = 'BH151DA';
$postcode2 = 'BH213AP';

// Geocode Postcodes &amp; Get Co-ordinates 1st Postcode
$pc1 = 'http://maps.google.com/maps/geo?q='.$postcode1.',+UK&amp;output=csv&amp;sensor=false';
$data1 = @file_get_contents($pc1);
$result1 = explode(",", $data1);
$custlat1 = $result1[2];
$custlong1 = $result1[3];

// Geocode Postcodes &amp; Get Co-ordinates 2nd Postcode
$pc2 = 'http://maps.google.com/maps/geo?q='.$postcode2.',+UK&amp;output=csv&amp;sensor=false';
$data2 = @file_get_contents($pc2);
$result2 = explode(",", $data2);
$custlat2 = $result2[2];
$custlong2 = $result2[3];

// Work out the distance!
$pi80 = M_PI / 180;
$custlat1 *= $pi80;
$custlong1 *= $pi80;
$custlat2 *= $pi80;
$custlong2 *= $pi80;

$r = 6372.797; // mean radius of Earth in km
$dlat = $custlat2 - $custlat1;
$dlng = $custlong2 - $custlong1;
$a = sin($dlat / 2) * sin($dlat / 2) + cos($custlat1) * cos($custlat2) * sin($dlng / 2) * sin($dlng / 2);
$c = 2 * atan2(sqrt($a), sqrt(1 - $a));

// Distance in KM
$km = round($r * $c, 2);

// Distance in Miles
$miles = round($km * 0.621371192, 2);

echo 'The distance between '.$postcode1.' and '.$postcode2.' is '.$km.'Km ('.$miles.' miles).';

?&gt;
</pre>
<p>You could use $result1[0] and $result2[0] to check codes. If the value is anything other than 200 the postcode is invalid. Also note UK is also searched for to guarantee correct results!</p>
<p>The result is also rounded to make sure we only have 2 decimal places. Make sure your postcodes do not have any spaces in when they go to Google, if you&#8217;re collecting them from a form maybe use:</p>
<pre class="brush:php">function nowhitespace($data) {
return preg_replace('/\s/', '', $data);
}
$postcode1 = nowhitespace($postcode1);</pre>
<p>to remove all spaces before processing, and the following to check it&#8217;s ok after processing:</p>
<pre class="brush:php">if (($result1[0] != 200) || ($result2[0] != 200)) {
echo "&lt;p&gt;Invalid Postcode(s) Entered. Please try again.&lt;/p&gt;";
} else {</pre>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3cc.org/2010/08/using-google-maps-geocoding-and-php-to-find-the-distance-between-uk-postcodes/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Selling more on eBay.co.uk &#8211; without the cost of PPC!</title>
		<link>http://www.3cc.org/2009/04/selling-more-on-ebaycouk-without-the-cost-of-ppc/</link>
		<comments>http://www.3cc.org/2009/04/selling-more-on-ebaycouk-without-the-cost-of-ppc/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 17:01:36 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[ebay shops]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.3cc.org/backyard/?p=11</guid>
		<description><![CDATA[When you&#8217;re selling things online there always seems to be this &#8220;invisible barrier&#8221; between the sales volume you have and the sales volumes you would like to achieve. While eBay now offer all sorts of programs to &#8220;boost&#8221; sales there are often easier &#38; cheaper things you can do to help your sales grow. One [...]]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;re selling things online there always seems to be this &#8220;invisible barrier&#8221; between the sales volume you have and the sales volumes you would like to achieve. While eBay now offer all sorts of programs to &#8220;boost&#8221; sales there are often easier &amp; cheaper things you can do to help your sales grow.</p>
<p>One of the most noticable changes was their introduction of the eBay PPC (pay per click) program, where you can advertise in places you normally wouldn&#8217;t be seen for a per-click rate (which of course is variable depending on the keywords, competition and placement for the advert). You could also call on traditional ad networks like Google Adwords to get your products out there, or even price comparison websites such as shopping.com &#8211; again costing you per-click prices&#8230;with no guarantees of conversions.</p>
<p>I found the following article when digging through my bookmarks the other day, and while it is a couple of years old, many of the facts stand true today (<a href="http://www.darrenatkinson.co.uk/articles/cost-effective-seo/" target="_blank">SEO is more effective than PPC</a>). What I want to take from it is that a good seo campaign will generally improve sales over time, and will keep driving sales even when you stop paying the bill. PPC is just a switch. As soon as you stop, sales slow.</p>
<p>Anyway &#8211; here&#8217;s a couple of ideas on how to boost your SEO rankings with your eBay shop:</p>
<ol id="intelliTxt">
<li>When creating listings, place the title of your item and other descriptive terms in H1 and H2 headers. These titles need to contain relevant keywords to your product, with high keyword density. When looking for keywords you can use the <a href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google Keyword Analyser Tool</a> to show search volumes for different keywords. The tool will also suggest other keywords to try. Try to think about terms people might search for most and put these in <strong>bold</strong>. Using the H1 and H2 headers essentially gives search engines a &#8216;snapshot&#8217; of what that page might be about, and the bold text will be taken as important; giving it some extra weight in the search engines.</li>
<li>
<div class="stepBg"></div>
<p>Make sure you list products regularly to keep the search engines coming back for indexing. The more active your eBay store seems to the search engines, the higher (and more frequently) it will be listed.</li>
<li>
<div class="stepBg"></div>
<p>Make use of the free eBay tools such as Blogs, Reviews and Guides. You get free accounts with your seller account and you&#8217;ll see many of the larger sellers with tags such as &#8220;Top 25 Reviewer&#8221; etc. They have written lots of reviews or guides, which have then been indexed by the search engines. Every one of these reviews, posts or guides contains several links back to that seller&#8217;s shop and products.</li>
<li>
<div class="stepBg"></div>
<p>Use the RSS feeds included in eBay stores. You can automatically set Google to grab your products and essentially promote them for free in search results, comparison shopping and more. This used to be done through the google store connector, but now you have to setup the <a href="http://www.3cc.org/backyard/2009/04/21/ebaycouk-and-the-google-base-connector-upload-direct/">google base &#8211; ebay feed link</a> yourself.</li>
<li>
<div class="stepBg"></div>
<p>Make use of the &#8220;Manage My Store&#8221; section in My eBay. Under Store Design, click &#8220;Search Engine Keywords.&#8221; You can use the Google Keyword Tool mentioned earlier to find high traffic keywords &#8211; but remember to only use keywords related to your store else you might be punished for keyword stuffing (using too many, or non-related keywords).</li>
</ol>
<p>Thats all <img src='http://www.3cc.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.3cc.org/2009/04/selling-more-on-ebaycouk-without-the-cost-of-ppc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Delete (Permanently) Campaigns from Adwords</title>
		<link>http://www.3cc.org/2008/09/delete-permanently-campaigns-from-adwords/</link>
		<comments>http://www.3cc.org/2008/09/delete-permanently-campaigns-from-adwords/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 13:23:26 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Adwords]]></category>
		<category><![CDATA[campaigns]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.3cc.org/backyard/?p=6</guid>
		<description><![CDATA[EDIT: I&#8217;m aware that the adwords interface has now changed; thankfully it makes a little more sense now So, am I missing something, or it a REQUIREMENT to have ALL of your old campaigns sitting in your account, forever? Imagine how silly this would be, deleting some data, thinking it&#8217;s gone &#8211; but it&#8217;s still [...]]]></description>
			<content:encoded><![CDATA[<p>EDIT: I&#8217;m aware that the adwords interface has now changed; thankfully it makes a little more sense now <img src='http://www.3cc.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, am I missing something, or it a REQUIREMENT to have ALL of your old campaigns sitting in your account, forever?</p>
<p>Imagine how silly this would be, deleting some data, thinking it&#8217;s gone &#8211; but it&#8217;s still there&#8230;and sporting a big DELETED.</p>
<p>It&#8217;s confirmed that you can&#8217;t actually remove campaigns from Adwords, and one of our new staff was most confused.</p>
<p>Why keep the old campaigns? Well, because we all love Historical Data! Or that&#8217;s what Google says anyway.</p>
<p>There is an easy solution &#8211; you can set your account to &#8216;pretend&#8217; the data was deleted. It&#8217;s in a little box to the top right of the campaign box&#8230;they explain it more here.</p>
<p>Thing is, you can easily remove the deleted campaigns from your sight &#8211; but you&#8217;ve still got their totals messing with your curent totals.</p>
<p>Google, I want a purge feature. Delete = Delete. Delete DOES NOT = Disable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3cc.org/2008/09/delete-permanently-campaigns-from-adwords/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Funding Adwords with Adsense?</title>
		<link>http://www.3cc.org/2008/09/funding-adwords-with-adsense/</link>
		<comments>http://www.3cc.org/2008/09/funding-adwords-with-adsense/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 12:05:22 +0000</pubDate>
		<dc:creator>dave</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Currency]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.3cc.org/backyard/?p=3</guid>
		<description><![CDATA[It&#8217;s been years since the first Adwords advertisers first commented on whether Google would ever release a funds transfer option for Adsense &#8211;&#62; Adwords balances. Just think how this would help cash flow in a company&#8217;s advertising budget &#8211; you could even call it renewable advertising. Money In (from Adsense) = Money Out (from Adwords), [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been years since the first Adwords advertisers first commented on whether Google would ever release a funds transfer option for Adsense &#8211;&gt; Adwords balances.</p>
<p>Just think how this would help cash flow in a company&#8217;s advertising budget &#8211; you could even call it renewable advertising.</p>
<p>Money In (from Adsense) = Money Out (from Adwords), and then of course you could throw an additional budget into the mix to further promote more visits, hence increasing the money made from adsense further &#8211; like a chain reaction.</p>
<p>This would greatly help us as a development and marketing company when working with our self managed customers. We set up all the marketing for them but use their accounts&#8230;so we&#8217;re constantly pushing for payments in and out of Google. Once funds have left the Adsense account it may be weeks (or on the odd occasion months) before the company accountants approve a push of funds back into the associated Adwords account.</p>
<p>There have been plenty of discussions over the years, outlining many of the problems of such a scheme, but we&#8217;ll keep hoping.</p>
<p>Another interesting problem is how Google deals with exchange rates when dealing with customer&#8217;s funds. I was reminded of this when reading a short article over at <a title="MEMWG is a popular Unofficial Adsense Blog" href="http://www.memwg.com/google-should-switch-to-euros/" target="_blank">MEMWG</a> on Adsense.</p>
<p>Whether this was down to how we configured Adsense or just how Adsense is, the whole system works in USD. I was reminded of Google&#8217;s binding to the American currency when the exchange rate for GBP-USD changed from the highs of less than a month ago, to new lows&#8230;where the Dollar is once again worth more against the Pound &#8211; meaning each USD in advertising revenue means more £GBP. Good stuff.</p>
<p>I then remembered that our Adwords accounts are all in GBP&#8230;which at the moment is favourable since we get more £ from our Adsense, and pay less for our Adwords than if our account was in Dollars.</p>
<p>That sounds about right. Point of the story there was that perhaps adoption of a single currency WOULD prove beneficial, else it could lead to people playing the currency markets through Google. Unlikely I know, but one has to take every opportunity one gets.</p>
<p>It would also remove most of the barriers to transferring balances between accounts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3cc.org/2008/09/funding-adwords-with-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

