02-11-2009, 07:23 PM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
Just scramble the input with some string functions like so:
php Code:
function TalkPHP_Encrypt ($szString){ $szString = str_rot13($szString); $szString = md5($szString); $szString = substr($szString, 5, 15); return $szString; }echo TalkPHP_Encrypt ('Everybody at TalkPHP loves encryption');
That is of course unless you want to reverse it, in which case it'll require a little more thought. What is wrong with the in-built encryption methods, however?
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|