| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Developer of Estibot Join Date: Jun 2006
Posts: 1,937
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | 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. ????: NamePros.com http://www.namepros.com/code/366820-code-for-tracking-conversion-goals.html 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> For instance, if your own website is called example.com and your affiliate landing page is Code: http://www.affiliatewhatever.com/myid Code: http://example.com/go.php?site=http://www.affiliatewhatever.com/myid 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
__________________ FREE 40+ page eBook on Domain Development Download now! Start Your Own Domain Registration Business! Estibot Reseller Plans |
| |