Skip to content

Instantly share code, notes, and snippets.

@underdown
Created October 19, 2018 15:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underdown/bc03773509868c1dbccc075fc03c960e to your computer and use it in GitHub Desktop.
Save underdown/bc03773509868c1dbccc075fc03c960e to your computer and use it in GitHub Desktop.
Affiliate tracking
<?php
foreach($_GET as $k=>$v)
$affline=$affline."&".urlencode($k)."=".urlencode($v);
$affline=substr($affline,1);
?>
//place this at the very top of the page
//decorate links with: <a href="http://mydomain.com/?<?php echo $affline; ?>">link</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment