Hi Guys,
Is there a way a encrypt the query string being sent to a confirmation page via redirect?
If not via standard settings, could you please point out where I could include some custom code to do this?
I was thinking about adding something link this:
<?php
$str = 'This is an encoded string';
echo base64_encode($str);
?>
Result:
VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==
Thanks
Daniel