Hey, I need to pass encrypted data from one page to another, I tried using mycrypt_ecb()
$encrypted_data = mcrypt_ecb (3DES,$key, $input, MCRYPT_ENCRYPT);
and then
$encrypted_data = mcrypt_ecb (3DES,$key, $input, MCRYPT_DECRYPT);
on the same page it works fine, but on different pages with the same key, it starts to work okay but ruins somewhere in the middle of the string
???