<?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>Search Engine Optimization Blog - SEM News &#38; Opinion - David Ogletree &#187; Adwords</title>
	<atom:link href="http://www.ogletreeseo.com/category/google/adwords/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ogletreeseo.com</link>
	<description>If you think it&#039;s expensive to hire a professional to do the job, wait until you hire an amateur - Red Adair</description>
	<lastBuildDate>Sun, 27 Feb 2011 20:47:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Show different content for PPC users with PHP</title>
		<link>http://www.ogletreeseo.com/326.html</link>
		<comments>http://www.ogletreeseo.com/326.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 18:39:09 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/?p=326</guid>
		<description><![CDATA[I just recently created a new site for a client and he decided he wanted to do PPC. I created a landing page for him. I still wanted the users to be able to see the rest of the site but I wanted to show a specific phone number to PPC visitors. I created some [...]]]></description>
			<content:encoded><![CDATA[<p>I just recently created a new site for a client and he decided he wanted to do PPC.  I created a landing page for him.  I still wanted the users to be able to see the rest of the site but I wanted to show a specific phone number to PPC visitors.  I created some PHP code that gives a 10 year cookie to anybody who hits my PPC landing page.  On  every other page in my site I put in some code that checks for that cookie and gives then a PPC phone number if they find that cookie. </p>
<p>Code for PPC landing page. Must be very first thing on page.</p>
<p><code>&lt;?php<br />
setcookie(&quot;ppc&quot;, &quot;this works&quot;, time()+60*60*24*365*10);<br />
?&gt;</code></p>
<p>Code for every other page.</p>
<p><code>&lt;?php<br />
if (isset($_COOKIE[&quot;ppc&quot;]))<br />
&nbsp;&nbsp;&nbsp;&nbsp;echo &#039;ppc info&#039;;<br />
else<br />
&nbsp;&nbsp;&nbsp;&nbsp;echo &#039;non ppc info&#039;;<br />
?&gt;</code></p>
<p>You can use that code to display a different logo or image with phone number in it or special text.  If you have your phone number all over the place I would put your phone numbers in different include files so that you can change them easily.</p>
<p>Code for include</p>
<p><code>&lt;?php<br />
if (isset($_COOKIE[&quot;ppc&quot;]))<br />
&nbsp;&nbsp;&nbsp;&nbsp;include &#039;ppc-phone.inc&#039;;<br />
else<br />
&nbsp;&nbsp;&nbsp;&nbsp;include &#039;phone.inc&#039;;<br />
?&gt;</code></p>
<div class="simpletags">Technorati Tags: <a href="http://technorati.com/tag/ppc" rel="tag">ppc</a>, <a href="http://technorati.com/tag/php" rel="tag"> php</a>, <a href="http://technorati.com/tag/adwords" rel="tag"> adwords</a>, <a href="http://technorati.com/tag/SEM" rel="tag"> SEM</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/326.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track if your competitor is actively doing SEO</title>
		<link>http://www.ogletreeseo.com/145.html</link>
		<comments>http://www.ogletreeseo.com/145.html#comments</comments>
		<pubDate>Tue, 27 Feb 2007 02:55:50 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/145.html</guid>
		<description><![CDATA[I blogged about this a while back but did not have the readership that I do now so I thought I would bring it up again because it bears repeating. eWhisper a friend of mine made a suggestion at webmasterworld 2 years ago. Sometimes, I buy the &#8216;seo&#8217; terms (allinurl:example.com, link:example.com, etc) to see how [...]]]></description>
			<content:encoded><![CDATA[<p>I blogged about this a while back but did not have the readership that I do now so I thought I would bring it up again because it bears repeating.  <a href="http://www.ewhisper.net/">eWhisper</a> a friend of mine made a <a href="http://www.webmasterworld.com/forum81/4775.htm?536">suggestion at webmasterworld</a> 2 years ago.  </p>
<blockquote><p>Sometimes, I buy the &#8216;seo&#8217; terms (allinurl:example.com, link:example.com, etc) to see how active some of my competitors are in checking their links and SEOing their sites.</p>
<p>Knowing which ones are very active, and which ones don&#8217;t fret about these searches can help in determining which competitors to keep an eye on, as well as looking for sudden spikes in these queries. </p></blockquote>
<p>You can use this for many other things.  It is a way to keep track of unique terms that you know only certain people would type in.  Nobody has to click on the ad they just have to type it in.  You will see an impression in your adwords account.  You can even have some fun with somebody by using ad text that says something like &#8220;George I&#8217;m watching you&#8221;.  You can also do the same thing with other PPC networks.</p>
<div class="simpletags">Technorati Tags: <a href="http://technorati.com/tag/ppc" rel="tag">ppc</a>, <a href="http://technorati.com/tag/adwords" rel="tag"> adwords</a>, <a href="http://technorati.com/tag/msn+adcenter" rel="tag"> msn adcenter</a>, <a href="http://technorati.com/tag/overture" rel="tag"> overture</a>, <a href="http://technorati.com/tag/seo" rel="tag"> seo</a>, <a href="http://technorati.com/tag/track+competitiers" rel="tag"> track competitiers</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/145.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adwords not Pausing Content Network</title>
		<link>http://www.ogletreeseo.com/143.html</link>
		<comments>http://www.ogletreeseo.com/143.html#comments</comments>
		<pubDate>Tue, 20 Feb 2007 20:45:14 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/143.html</guid>
		<description><![CDATA[I just found out that when you pause a campaign in Google Adwords your content network is not paused for 2 days. Google confirms this to be a bug and are working on it. Technorati Tags: google, google adwords, adwords]]></description>
			<content:encoded><![CDATA[<p>I just found out that when you pause a campaign in Google Adwords your content network is not paused for 2 days.  Google confirms this to be a bug and are working on it.</p>
<div class="simpletags">Technorati Tags: <a href="http://technorati.com/tag/google" rel="tag">google</a>, <a href="http://technorati.com/tag/google+adwords" rel="tag"> google adwords</a>, <a href="http://technorati.com/tag/adwords" rel="tag"> adwords</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/143.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Adwords requires high bids to enter competitive areas</title>
		<link>http://www.ogletreeseo.com/80.html</link>
		<comments>http://www.ogletreeseo.com/80.html#comments</comments>
		<pubDate>Fri, 21 Apr 2006 02:42:59 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/80.html</guid>
		<description><![CDATA[Graywolf bloged that Adwords requires you to bid very high to enter a competitive area. He spoke with reps at Google through email and then at Webmasterworld PubCon in Boston. He noticed that his only choice was to show up in was to bid enough to be number one. He could not lower his bid [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wolf-howl.com/?p=345">Graywolf bloged</a> that Adwords requires you to bid very high to enter a competitive area.  He spoke with reps at Google through email and then at <a href="http://www.pubcon.com/">Webmasterworld PubCon</a> in Boston.  He noticed that his only choice was to show up in was to bid enough to be number one.  He could not lower his bid a little to get lower like 2 or 3.  Google told him he had to pay the high clicks for a few days for them to decide what his &#8220;quality score&#8221; was.</p>
<p>I have never understood why Google does things the way they do.  They don&#8217;t think advertisers are smart enough to advertise right.  It is very hard to work with Adwords.  Your bid seems to have nothing to do with what you pay or where you rank.  You can bid $2 and be number one and after a few days you see that you are paying $1.40 per click.  You lower your bid to $1.40 you move to number 3 and you pay $0.90 a click.  I have a term I want to be number 3 on and it is hard to stay there.  I have to move the bid constantly all over the place to get it just right.  I don&#8217;t want to pay $2 a click but I know I have to bid $2 to only pay $1.40.  If I wanted to pay $2 I would have to bid higher than $2.</p>
<p>Google says we do this because our users are important to us and we know what they want.  I am so tired of this attitude in Google.  They could care less what the user actually want They are only concerned what they think the users want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/80.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Sponsored Links in Google</title>
		<link>http://www.ogletreeseo.com/79.html</link>
		<comments>http://www.ogletreeseo.com/79.html#comments</comments>
		<pubDate>Mon, 17 Apr 2006 16:45:49 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/79.html</guid>
		<description><![CDATA[I just learned about a new way to search Google sponsored links.]]></description>
			<content:encoded><![CDATA[<p>I just learned about a new way to <a title="search google sponsored links" href="http://www.google.com/sponsoredlinks?hl=en&#038;lr=&#038;safe=off&#038;c2coff=1&#038;q=your+keyword+here&#038;btnG=Search+Sponsored+Links">search Google sponsored links</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/79.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google page creator review with screenshots &#8211; googlepages</title>
		<link>http://www.ogletreeseo.com/68.html</link>
		<comments>http://www.ogletreeseo.com/68.html#comments</comments>
		<pubDate>Thu, 23 Feb 2006 07:08:10 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Web Page Creator]]></category>

		<guid isPermaLink="false">http://www.ogletreeseo.com/68.html</guid>
		<description><![CDATA[Google has produced yet another free service called the web page creator. that requires you to have a gmail account and another way to show adwords ads. There are no ads yet but the TOS for the Google web page creator says they will put them on. It is a WYSIWYG (what you see is [...]]]></description>
			<content:encoded><![CDATA[<p>Google has produced yet another <a target="_blank" href="https://www.google.com/accounts/ServiceLogin?service=pages&#038;continue=http%3A%2F%2Fpages.google.com%2F">free service</a> called the <strong>web page creator</strong>. that requires you to have a gmail account and another way to show adwords ads.  There are no ads yet but the TOS for the <em>Google web page creator</em> says they will put them on.    It is a WYSIWYG (what you see is what you get) editor and the pages you create go on http://gmail_acct_name.googlepages.com/. Google seem to be trying to emulate other free hosting services but with a page creator.  This is nothing new.<span id="more-68"></span></p>
<p>Google gives you 100 MB of storage.  There are 41 themes or &#8220;looks&#8221; as they call them.  There is a control panel where you can create new pages or select the pages you have made already to edit.  It is called &#8220;<strong>Page Manager&#8221;</strong>. The <u>page creator</u> will let you create links and does not put link condoms on them.  There is not a way that I can find to edit the raw html.  It will let you edit html for sections but not the whole page.  It seems the main heading is what goes into the title tag with your gmail user name before it.<br />
It lets you do simple things like bold, italics, underline,  change font, font size, font color.  It will let you add headings.  It will also let you add images.  I added one of my wife and I.  I started to get several 404&#8242;s after I added a small image.  It is on the front page of digg so they might be hammering it right now.  It is running quite slow.<br />
It is very simple right now but does what it says.  It creates pages.  I have not seen any ppc ads on it yet but I&#8217;m sure they plan to add those in the future.  It must be a beta because it is quite buggy.  It does not support Safari or Opera.  If you try to put adsense on the page the WYSIWYG will mess up the code.  It also will not let you put in flash.  As far as I can tell there is no bandwidth limit.<br />
<a href="http://ogletree.googlepages.com/"> </a><a id="tr_site-url" href="http://ogletree.googlepages.com/">http://ogletree.googlepages.com/</a></p>
<h3>Google page creator screenshots:</h3>
<p><a href="http://www.ogletreeseo.com/pagemanager.jpg">Page Manager</a></p>
<p><a href="http://www.ogletreeseo.com/pagecreator.jpg">Page Creater</a></p>
<p><strong>CSS code Google puts on all pages:</strong><br />
&#8211; &#8212; &#8211; &#8212; &#8211; &#8212; &#8211;<br />
Browser Fixes<br />
&#8211; &#8212; &#8211; &#8212; &#8211; &#8212; &#8211;</p>
<p>This file uses CSS filtering methods to fix various<br />
layout bugs.</p>
<p>Each of the following three imported files is a<br />
separate, browser-specific CSS file that keeps all<br />
hacks out of the main style sheet.</p>
<p>Over time, as supporting these browsers no longer<br />
remains a priority, cleaning up the hacks is as<br />
easy as deleting the @import statement below, or<br />
simply no longer linking this file from the HTML.</p>
<p>*/</p>
<p>/*<br />
fix ie6 &#8220;peekaboo bug&#8221; using the &#8220;holly hack&#8221;.<br />
Note, this style only gets applied to ie6<br />
*/<br />
* html .wrapper {<br />
height: 0.1%;</p>
<p>&#8221;<br />
&#8230;.. a bit later&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/68.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Adwords Feature: Campaign Negative Sites</title>
		<link>http://www.ogletreeseo.com/51.html</link>
		<comments>http://www.ogletreeseo.com/51.html#comments</comments>
		<pubDate>Fri, 06 May 2005 16:33:10 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Webmasterworld]]></category>

		<guid isPermaLink="false">http://www.vsns.com/ogletreeseo/wordpress/2006/05/06/new-adwords-feature-campaign-negative-sites/</guid>
		<description><![CDATA[On Webmasterworld there are 2 threads on this one for the advertisers and one for the publishers. Google Adwords has added a feature so that advertisers have a blacklist of sites that they don&#8217;t want their ad on. Advertisers Publishers There are many issues with this. Will advertisers throw away sales becasue they are not [...]]]></description>
			<content:encoded><![CDATA[<p>On <a href="http://www.webmasterworld.com/">Webmasterworld</a> there are 2 threads on this one for the<br />
advertisers and one for the publishers.  Google Adwords has added a<br />
feature so that advertisers have a blacklist of sites that they don&#8217;t want<br />
their ad on.</p>
<p><a href="http://www.webmasterworld.com/forum81/5284-1-75.htm#msg56">Advertisers</a></p>
<p><a href="http://www.webmasterworld.com/forum89/6556.htm">Publishers</a><br />
There are many issues with this.  Will advertisers throw away sales becasue<br />
they are not smart enough to really check a site out before putting them in the<br />
list.  Publishers shoudl not be too concerned because most people that are<br />
going to do this already have their ads banned on all content networks<br />
probably.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/51.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adwords regional targeting will lose you all AOL traffic</title>
		<link>http://www.ogletreeseo.com/58.html</link>
		<comments>http://www.ogletreeseo.com/58.html#comments</comments>
		<pubDate>Tue, 01 Mar 2005 20:50:53 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.vsns.com/ogletreeseo/wordpress/2005/03/01/adwords-regional-targeting-will-lose-you-all-aol-traffic/</guid>
		<description><![CDATA[Well I did the test and found out if you do any regional targeting with adwords you will lose all AOL traffio.]]></description>
			<content:encoded><![CDATA[<p>Well I did the test and found out if you do any regional targeting with adwords you will lose all AOL traffio.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/58.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trying to advertise to just AOL users with adworfds</title>
		<link>http://www.ogletreeseo.com/59.html</link>
		<comments>http://www.ogletreeseo.com/59.html#comments</comments>
		<pubDate>Sat, 05 Feb 2005 10:04:59 +0000</pubDate>
		<dc:creator>ogletree</dc:creator>
				<category><![CDATA[Adwords]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.vsns.com/ogletreeseo/wordpress/2005/02/05/trying-to-advertise-to-just-aol-users-with-adworfds/</guid>
		<description><![CDATA[Well today I decided to make a new campaign in adwords. This campaign will only show my ads to people living in Virginia. This should show my ads to people in Virginia. AOL users will all be from Virginia. I am hoping this will work.]]></description>
			<content:encoded><![CDATA[<p>Well today I decided to make a new campaign in adwords.  This campaign will only show my ads to people living in Virginia.   This should show my ads to people in Virginia.  AOL users will all be from Virginia.  I am hoping this will work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ogletreeseo.com/59.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

