in reply to Re^3: Location redirect
in thread Location redirect
when i submit the form i take the parameters<form action="login.cgi" method="post"> username <input type="text" name="usr"> password:<input type="password" name="pwd"> <input type="submit" value="LOGIN"> </form>
finaly i want to redirect the person to other page (also with login form) if it is with usr eq 'test' and password eq 'test'.my $req = new CGI; my $usr = $req->param('usr'); my $pwd = $req->param('pwd');
On the page index.cgi in example.cgi there isif ( ($usr eq 'test') and ($pwd eq 'test')) { print $req->header(-type=>'text/html', -location=>"http://www.exampl +e.com/index.cgi?param1=10¶m2=3¶m3=2&user=$usr&password=$pwd") +; }
This is working, but with get parameters. I want to do it with post. Thats all.<form action="index.cgi¶m1=10¶m2=3¶m3=2" method="post"> username <input type="text" name="user"> password:<input type="password" name="password"> <input type="submit" value="LOGIN"> </form>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Location redirect
by Anonymous Monk on Nov 02, 2012 at 12:01 UTC | |
by himik (Acolyte) on Nov 02, 2012 at 12:49 UTC | |
by Anonymous Monk on Nov 02, 2012 at 14:31 UTC |