I can't use my cpvlab on this new campaign due to some dynamic urls I have to construct, so am using my prosper install
However, the way mediatraffic does the target passthrough has me a little thrown as to how I set it up when using a LP
What I have so far is
1) mediatraffic will append a ?=target_passthrough on the end of my url to the LP
2) I'm using a php GET to grab the variable
3) then I'm passing the variable through my link to the offer
4) then prosper has this php code on my outbound page
<?php
$keyword = $_GET['target_passthrough'];
// -------------------------------------------------------------------
//
// Tracking202 PHP Redirection, created on Tue Jan, 2013
//
// This PHP code is to be used for the following landing page.
// http://mydomain.com/index.php
//
// -------------------------------------------------------------------
if (isset($_COOKIE['tracking202outbound'])) {
$tracking202outbound = $_COOKIE['tracking202outbound'];
} else {
$tracking202outbound = 'http://mydomain.com/tracking202/redirect/lp.php?lpip=111&pci='.$_COOKIE['tracking202pci'];
}
header('location: '.$tracking202outbound);
?>