in reply to Calling perl from CGI

You can use the following method to check whether a module is installed or not.
if ( eval "use $module; 1" ) { $result = "Module $module is available!!"; }else { $result= "Module $module not available!!"; }

Replies are listed 'Best First'.
Re^2: Calling perl from CGI
by PerlRob (Sexton) on Sep 07, 2008 at 06:04 UTC
    Thanks for the excellent responses and alternatives! TIMTOWTDI!