hi list, i need to write a php page to execute a perl module on my client's unix machine, how do i do that?
the perl module is some simple encryption module for security reason my client doesn't allow me to read the source code. the perl function that i need to execute will return an encrypted string: sub perl_encrypt { local($key, $input) = @_; use encypt_module; encypt_module::encypt_set_key($key, 0); return encypt_module::encypt_file($input); } any help? Mike Web Developer User In Mind Creative Group -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php