I've started a campaign where the landing page is simply a .php that redirects to my azoogle link. When I use a landing page I use <?php echo str_replace("-", " ", $_GET["kw"]); ?> as the subid of the affiliate link and add ?kw={YSMKEY} to my landing page url and it works. But when I use a php redirect that looks like this:
then I can't see what keyword generated the conversion, it literally says that "<?php echo str_replace(\-\ \ \ $_GET[\seed\])" was the keyword that generated the conversion. How can I keep using a redirect but still know what keyword lead to the conversion?
Thanks
PHP:
<?php
header( 'Location: http://www.adsjmp.com/track.asp?a=Csfgsag&b=sdfsdgfsg=0&l=0&o=<?php echo str_replace("-", " ", $_GET["kw"]); ?>&p=0' ) ;
?>
then I can't see what keyword generated the conversion, it literally says that "<?php echo str_replace(\-\ \ \ $_GET[\seed\])" was the keyword that generated the conversion. How can I keep using a redirect but still know what keyword lead to the conversion?
Thanks