[EMAIL PROTECTED] wrote:
Hi there !

Hello Joe,

I'm very new to perl and i'm asked to call a particular perl module using a function
! how do i go about ???

Should use MODULES::Filename ..?

use is the right thing, but the args depend on the the module:

For instance, you can do:

 use CGI;
 my $cgi = CGI new;
 print $cgi->header();
or
 use CGI 'header';
 print header();
or
 use CGI;
 print CGI::header();

The problem is i'm not sure what are the values to be passed on to that ! This
module basically parses the html file and pushes all the links in to a database !

What module is it perhaps we can help a bit more if we had more details :)

Lee.M - JupiterHost.Net

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to