Re: parseform.lib
- From: info@xxxxxxxxxxxx (D. Bolliger)
- Date: Sun, 23 Jul 2006 14:09:48 +0200
Madhu Kumar am Sonntag, 23. Juli 2006 11:16:
Hi,
I when i use parseform.lib
How do you 'use'? A
use SomeModule;
expects a file with the name 'SomeModule.pm'.
To include perl code with another suffix, you need
require 'parseform.lib';
perldoc -f use
perldoc -f require
in my program i get the following error
message :
Can't locate parseform.lib in @INC (@INC contains: .
/usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0
/usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi
/usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl
/usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl) at
test.cgi line 14.
What is the error message about
This means that there is no 'parseform.lib' file in the paths contained in
@INC.
and where to find parseform.lib.
on *nix: find / -name parseform.lib
If the parseform.lib is installed in another path, you can include the path
like
require '/here/is/installed/parseform.lib';
To parse form data, an usual way is to use the CGI module:
perldoc CGI
Does this help?
Dani
.
- References:
- parseform.lib
- From: Madhu Kumar
- parseform.lib
- Prev by Date: Re: Regex find and replace - delete line
- Next by Date: Re: Regex find and replace - delete line
- Previous by thread: parseform.lib
- Next by thread: For Loop Through Column
- Index(es):
Relevant Pages
|