Google News
logo
PHP - Interview Questions
What are the encryption techniques in PHP ?
MD5 PHP implements the MD5 hash algorithm using the md5 function,
<?php 
$encrypted_text = md5 ($msg); 
?>
Advertisement