Quote:
Originally Posted by TROLLENSTEIN
The NATS code is a blank (cookie-less) for linking to the biller, your own NATS affiliate cookie will fill in (over-ride) the contents of it.
You can use this code to decode the NATS link and check for yourself:
PHP Code:
<?
$data = "Paste_the_NATS_code_in_here";
if($argv[1]) $data = $argv[1];
$chars = strlen($data);
$add = 4 - ($chars % 4);
if ($add < 4) while($add--) $data .= '=';
list($campaign, $program, $site) = explode(':', base64_decode($data));
echo "Campaign: $campaign \nProgram: $program \nSite: $site \n\n";
?>
It's absolutely safe and fine, and not shaving. Just like a billing error is not shaving, either. 
|
thats good, thank you for the share
