If my Destination URL is: http://www.mysite.com/offer/index.php?t202id=*****&t202kw=campaigninfo
What should the php code be so the campaign ID and subID will pass through?
Right now, this is what I have but it doesn't seem to be passing the subID through:
What should the php code be so the campaign ID and subID will pass through?
Right now, this is what I have but it doesn't seem to be passing the subID through:
Code:
<?php
$t202kw = $_GET['t202kw'];
header("Location: http://www.mytrackingdomain.com/tracking202/redirect/dl.php?t202id=****&t202kw=");
?>