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>
In reply to Re^4: Location redirect
by himik
in thread Location redirect
by himik
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |