i have download libmcrypt-x.x.tar.gz and followed the included installation instructions and when i run the following code
<?php
$key = "this is a very secret key";
$input = "Let us meet at 9 o'clock at the secret place.";
$encrypted_data = mcrypt_ecb (MCRYPT_3DES, $key, $input, MCRYPT_ENCRYPT);
?>
i get an error saying that
"Fatal error: Call to undefined function: mcrypt_ecb() in /var/www/html/two.php on line 4 "
Can anyone help me
thanq
bye