Last active
January 19, 2018 22:31
-
-
Save iamcanadian1973/d5f93decc781f9f8b8c34166224dadf9 to your computer and use it in GitHub Desktop.
Query vars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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