Hi Anthony
Try
perldoc perlmod
and
perldoc perlmodlib
Cheers,
Rob
"Anthony" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> I was wondering if someone could give me a link where i can learn how to
> construct Modules.
>
> Thank
>
>
--
--- Original Message Details ---
Who: Mat Harris
What: Re: creating modules
When: Wednesday 18 September 2002 03:43 pm
--- - - - - - - - - - - - - ---
> actually scrap that. if you could just tell me how to pass configs
> and variables to the module for use in a sub, that would be a
actually scrap that. if you could just tell me how to pass configs and
variables to the module for use in a sub, that would be a great help
On Wed, Sep 18, 2002 at 08:32:25 +0100, Mat Harris wrote:
> ok, how about this:
>
> user opens a webpage, the module checks where a cookie is set in the cli
ok, how about this:
user opens a webpage, the module checks where a cookie is set in the client
browser, if yes then check the cookie id against a mysql database. id the
cookis is valid then return an array like:
qw/valid, cookieid/
or if its invalid then:
qw/invalid, remoteip/
alsom, how do
Hi -
I would be happy to help. Please give me a _small_ piece
of code to modularize and details, and I will help you step
thru the process. Also let me know about your environment and
level of experience.
Aloha => Beau.
PS: the best tutorial on the process I have seen is in
"Effective Perl Prog
Mat Harris wrote:
> i would reall like to start creating my own modules for all those
> regularly used bit and pieces, but i don't know where to start. i have
> read perldoc perlmod and sources of loads of other modules but nothing..
>
> if i laid down a small scenario, could someone help me mod