John
|
Posted: 07/02/2004, 6:56 AM |
|
I am very new to Perl and CGI. I know how to create a login page and pass the Users variables along using ASP, however I don't know how to do it using PERL.
I've figured out how to install Perl, DBI and get a DB connection.
Now I really need someone, anyone to help me with some much needed guidance about passing variables. I'm stuck at the Login page 
I'm using CC, Perl, MS Access
Thanks,
John 
jg1130@yahoo.com
|
|
 |
Ozum
Posts: 57
|
Posted: 07/07/2004, 6:47 AM |
|
Hello,
I'm not sure that I understand you correct, but I try to answer.
You can use CGI.pm to pass form or other variables between requests. If you have a form with fields 'username' and 'password' you can use in the receiving page the code below.
use CGI qw(:all);
my $user = param('username');
my $password = param('password');
I hope it will help.
|
 |
 |
|