Can someone help me finding some good encode and decode / encryption and decryption methods for strings in php which doesn't put special characters in the result string when encoded.
Example:
$str = "this is a string";
$something = encode($str);
echo $something;
a82hliha8sdf7p9829189jsjfsdf //no special characters
but i do need the decrypt of decode or decryption function associated to its encrypt function.
I don't need the one way hash functions like md5.
Thankyou.
2006-09-12
23:21:46
·
5 answers
·
asked by
Manish
5
in
Computers & Internet
➔ Programming & Design