Dear Tim
Me too having the same probs i run Php in apache bundle ... now i'm in need of using mcript_ecb() function ... but of no use its not working (I hope we should have mcrypt compiled support in PHP)
i'll give u my code also just try it if it works Pls let me too
<?
$key = "late";
$str = "Vamsi is always too late to the office";
$encryp = mcrypt_ecb(MCRYPT_TripleDES,$key,$str,MCRYPT_ENCRYPT);
$decryp = mcrypt_ecb(MCRYPT_TripleDES,$key,$str,MCRYPT_DECRIPT);
echo"The encrypted string is $encryp<br>";
echo"The decrypted string is $decryp";
?>
Thankz in advance
Saran