Skip to content

Instantly share code, notes, and snippets.

@iamcanadian1973
Last active January 19, 2018 22:31
Show Gist options
  • Save iamcanadian1973/d5f93decc781f9f8b8c34166224dadf9 to your computer and use it in GitHub Desktop.
Save iamcanadian1973/d5f93decc781f9f8b8c34166224dadf9 to your computer and use it in GitHub Desktop.
Query vars
<?php
$activation_key = '';
if( isset( $_GET['activation_key'] ) && ! empty( $_GET['activation_key'] ) ) {
$activation_key = $_GET['activation_key'];
}
if( !empty( $activation_key ) ) {
$idev_saleamt = '0';
$idev_ordernum = $activation_key;
printf( '<img src="https://actioncoin.idevaffiliate.com/sale.php?profile=72198&idev_saleamt=%s&idev_ordernum=%s" style="height:0px; width:0px; border:0px;" />', $idev_saleamt, $idev_ordernum );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment