/ Published in: PHP
Password will be returned as md5
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function encryptpass($password) { $key = 'oYenhuobE577FzAixKPe9qQkptHbFx'. 'uoC0PcdPfNuQGnELzvI3FGVWl27k3v'. 'mqoymbRV09QWwdmq6c7AWysFP43LtM'. 'x8MDriq73T2PVJBGiyxQUxe4viLiHQ'. 'In4buglQcq3024DCw9sVFO0mFVe6Jq'. 'cPUuCjzYWyfgaSe97H6DBLIvAY9qbN'. 'xozZtZ0Id9Coy7daJDfx4w8BsyfFNr'; return $password; } }