Hi Struppi
Funkioniert leider nicht
#!/usr/bin/perl -w
use CGI;
#use strict;
my $cgi = new CGI;
$in{$_} = $cgi->param($_);
print "Content-Type: text/html\n\n";
print "<form action= "" method=post>Hallo $in{'tiere'}
<input type="checkbox" name="tiere" value="Hund">Hund<BR>
<input type="checkbox" name="tiere" value="Katze">Katze<BR>
<input type="checkbox" name="tiere" value="Maus">Maus<BR>
<input type=submit></form>";
#_______ Script ENDE _____________
Und
foreach( sort $cgi->param ){
print $_ ," = ", join( ", ", $cgi->param{$_} ), "\n";
}
Von Beat gibt wohl alles was ausgefüllt wurde aus.
Aber ich möchte $in{' nicht nur im Formular Abschnitt sondern über all verwenden.
Vielen Dank
Ben