Hello everyone,
Tracker softwares usually give us a "campaign link" that used as destination URL in our ads. I don't want to use that campaign link for few reasons, but i need to track impression on my landers. So which tracker software allow me to do that? I am using iMobitrax, but supporter told me i have to use campaign link to make everything work properly.
Thanks!
Some tracking systems use on-page javascript for their tracking, e.g. Clicky, vanilla p202, etc.
Can you pass querystrings to your lander or does it have to be purely mydomain.com/lander.php? If the former, you could make lander.php a script that redirects to your tracking link so that the user goes > mydomain.com/lander.php?subid1=this&subid2=that > redirects to tracking link > redirects to reallander.php.
Alternatively, you could make lander.php have an iFrame in it which has your tracking link as its source. User loads mydomain.com/lander.php > the browser tries to load the iFrame > the tracking link is called > redirects to the real lander > pulls that. For example, the following code works:
<html>
<head>
<style type="text/css">
body, html{margin: 0; padding: 0; height: 100%; overflow: hidden;}
#content{position:absolute; left: 0; right: 0; bottom: 0; top: 0px;}
</style>
</head>
<body>
<iframe width="100%" height="100%" frameborder="0" src="http://mylink.com"></iframe>
</body>
</html>
This may work in my case! Thanks a lot Zeno!