NamePros.Com (http://www.namepros.com/)
-   CODE (http://www.namepros.com/code/)
-   -   Code for tracking conversion goals (http://www.namepros.com/code/366820-code-for-tracking-conversion-goals.html)

estibot.com 08-26-2007 06:13 PM

Code for tracking conversion goals
 
Hi all,

Since I'm just an aspiring coder, this is probably very 101 for many of you. Nevertheless, thought I'd share this piece of code I made, maybe some will find it useful.

It's a little php file for tracking your site's conversions. Especially for those who are trying to fund their website through affiliate marketing.

The trick is to create a "go" page instead of linking directly to the affiliate sites. This way you can use your own stats program, Google Analytics or whatever, to easily track your affiliate links' performance.

Create a file called "go.php". Place it in your website's root.

Here is the entire content you'll need in the file:
Code:
<html> <head> <title>Redirecting...</title> </head> <body bgcolor="#FFFFFF"> <? $siteurl=$_GET['site']; ?> <script language=javascript> setTimeout("location.href='<?=$siteurl?>'", [1000]); </script> <!--- Add your google analytics or other stats code here--> </body> </html>


Now, in your website, instead of linking to an affiliate program directly, link to the go page.

For instance, if your own website is called example.com and your affiliate landing page is
Code:
http://www.affiliatewhatever.com/myid


Your link should look like this:
Code:
http://example.com/go.php?site=http://www.affiliatewhatever.com/myid


Just add your stats code to where it says on the code, and you should be able to follow your affiliate links' performance very effectively. Of course, it still won't track the actual sales, but you'll get an idea of the clickthroughs.

I also posted this on my blog, but since no one hardly ever reads it, thought I'd post it here so it might get more eyeballs and be of some use to someone

Cheers!
Josh

James 08-27-2007 01:15 AM

Moved to Code forum :)


All times are GMT -7. The time now is 09:56 PM.
Site Sponsors
Advertise your business at NamePros

Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0