Leser: 1
|< 1 2 >| | 15 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
use CGI ':standard';
my $bundesland;
$bundesland="$ENV{'QUERY_STRING'}";
my $query = new CGI;
my %cookie = $query->cookie(-name => 'objektbundesland');
my $setcookie = $query->cookie(-name=>'objektbundesland',
-value=>"$bundesland",
-domain => "$ENV{'SERVER'}",
-path => '/',
-expires => '+1h');
print $query->header(-cookie=>$setcookie);
|< 1 2 >| | 15 Einträge, 2 Seiten |