Leser: 2
7 Einträge, 1 Seite |
test.pl?rm=news
1
2
3
4
5
6
7
8
9
10
11
12
my $action = "test.pl?rm=news";
print $q -> header(),
$q -> start_html(),
$q -> start_form (-method => 'POST',
-action => $action,),
$q -> textfield(-name => 'name'),
$q -> password_field (-name => 'pass'),
$q -> submit (-name => 'los'),
$q -> end_form(),
$q -> end_html();
1 2 3 4 5 6 7 8 9 10 11 12 13 14
my $action = "test.pl"; my $runmode = "news"; print $q -> header(), $q -> start_html(), $q -> start_form (-method => 'POST', -action => $action,), $q -> textfield(-name => 'name'), $q -> password_field (-name => 'pass'), $q -> hidden( -name => 'rm', -default => $runmode ), $q -> submit (-name => 'los'), $q -> end_form(), $q -> end_html();
renee+2008-07-24 10:33:43--Weil Du GET- und POST-Parameter mischst und dann der Parameter nicht ausgewertet wird.
7 Einträge, 1 Seite |