View Single Post
Old 04-16-2014, 06:36 AM  
lucas131
¯\_(ツ)_/¯
 
Industry Role:
Join Date: Aug 2004
Posts: 11,475
Quote:
Originally Posted by TROLLENSTEIN View Post
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
lucas131 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote