Quote:
Originally Posted by Killswitch
Or a better way, for programs anyway is to put this at the top of the source for the gallery:
PHP Code:
<php
$ccbill = (empty($_GET['ccbill'])) ? 'YOUR-CCBILL-ID-NOT-AFFILIATE' : $_GET['ccbill'];
?>
Then on all links just put <?php echo $ccbill; ?> in place of the areas, and when a user hits the site via page.php?ccbill=2353 then 2353 gets credit, if the ccbill isn't set, it defaults to your sponsor id.
|
Why is this better than the first way?