Im using P202 php script to redirect traffic to an offer and I am losing my tokens.
Script that P202 gives has been inserted in a redirect.php file as follows (this I got from Step6 of the P202 setup "get LP code"):
<?php
// -------------------------------------------------------------------
//
// Tracking202 PHP Redirection, created on Wed Nov, 2013
//
// This PHP code is to be used for the following landing page.
// http://www.mydomain.com/LPfolder/Landing.php
//
// -------------------------------------------------------------------
if (isset($_COOKIE['tracking202outbound'])) {
$tracking202outbound = $_COOKIE['tracking202outbound'];
} else {
$tracking202outbound = 'http://www.tracker.com/tracking202/redirect/lp.php?lpip=811&pci='.$_COOKIE['tracking202pci'];
}
header('location: '.$tracking202outbound);
?>
$c1 = $_GET['c1'];
Looks like you are just passing c1 as text not as a variable.
/redirect.php?c1='.$c1.'&t202kw='.$c1
or in html
/redirect.php?c1=<? echo $c1 ?>&t202kw=<? echo $c1 ?>
dwell thats right, I am succesfully passing c1 on to everyone now. Thanks!, now I move on to my t202kw registration
Could there be any reason for which t202kw is not appearing on my P202 spy?
Not too sure, it should pass just like c1 if you pass it as a variable. I haven't used 202 in long time but double check your link to make sure you are passing a variable like you did to fix c1.
Are you talking about the keyword column in the spy tab? Is it showing up blank?
If this is your destination URL, you need to add something to t202kw from whatever traffic source you're using
http://www.mydomain.com/LPfolder/Landing.php?t202id=616&c1=c1&t202kw=
http://www.mydomain.com/LPfolder/Landing.php?t202id=616&c1=c1&t202kw=testkeyword