C
chachinga
Guest
Sell on CB or PDC? When not sell on CB AND PDC? (with the same site)
Since CB uses HOP and PDC uses ID, you can differentiate between the two sites, and capitalize on both site's traffic.
Put this code somewhere in your index file:
Where ever you have place your pay link, simple echo it:
<a href="<?php echo $paylink; ?">BUY NOW</a>
Any natural traffic that comes to the site will default to CB. This doesn't check for tracker cookies to properly accredit PDC affiliates...
Hope that helps a few people
Since CB uses HOP and PDC uses ID, you can differentiate between the two sites, and capitalize on both site's traffic.
Put this code somewhere in your index file:
PHP:
<?php
$hoplink = $_GET[hop];
$idlink = $_GET[id];
if ($hoplink != "")
$paylink = "http://1.CBID.pay.clickbank.net";
elseif ($idlink != "")
$paylink = "https://paydotcom.com/sell.php?id=PDCID";
else
$paylink = "http://1.CBID.pay.clickbank.net";
?>
Where ever you have place your pay link, simple echo it:
<a href="<?php echo $paylink; ?">BUY NOW</a>
Any natural traffic that comes to the site will default to CB. This doesn't check for tracker cookies to properly accredit PDC affiliates...
Hope that helps a few people