Leser: 3
![]() |
|< 1 2 3 4 5 >| | ![]() |
50 Einträge, 5 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
my $cgi = CGI->new();
my @names = $cgi->param;
my %Formular = ();
$Formular{uc($_}} = $cgi->param($_} foreach (@names);
print $cgi->header('text/html'),
$cgi->start_html(-title => 'CGI-Feedback'),
$cgi->h1('Kundenerfassung comments.pl'),
$cgi->p("<b>Kurzname</b> $Formular{KURZNAME}"),
$cgi->p("<b>Name1</b> $Formular{NAME1}"),
$cgi->p("<b>Name2</b> $Formular{NAME2}"),
$cgi->p("<b>Name3</b> $Formular{NAME3}"),
$cgi->p("<b>Stra\ße</b> $Formular{STRASSE}"),
$cgi->p("<b>Land</b> $Formular{LAND}"),
$cgi->p("<b>PLZ</b> $Formular{PLZ}"),
$cgi->p("<b>Ort</b> $Formular{Ort}");
# usw.
print $cgi->end_html();
$cgi->p("<b>Stra\ße</b>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl
use strict;
use warnings;
use CGI qw(:standard :html);
use CGI::Carp qw(fatalsToBrowser);
my @names = param;
my %Formular = ();
$Formular{uc($_)} = param($_) foreach (@names);
print header('text/html'),
start_html(-title => 'CGI-Feedback'),
h1('Kundenerfassung comments.pl'),
p(b("Kurzname") . " $Formular{KURZNAME}"),
p(b("Name1") . " $Formular{NAME1}"),
p(b("Name2") . " $Formular{NAME2}"),
p(b("Name3") . " $Formular{NAME3}"),
p(b("Stra\ße") . " $Formular{STRASSE}"),
p(b("Land") . " $Formular{LAND}"),
p(b("PLZ") . " $Formular{PLZ}"),
p(b("Ort") . " $Formular{Ort}"),
end_html;
close STDERR; #use this at your own risk
1 2 3 4 5
$_=''; s%%`^.*`s;.*;uhtnmo;;a>lha~a>inu~a>fmk~a>rou~a>duM~a>btl~s;&&&&&&;!d1!l2!b3!i4!f5!r6q(?);e;Z` `}a>&&&`sub# "1#{#"_=shift#;s^"2^"3#^;``;~`return #"_#}``^!&&`"1(#""2)#\.`Z%; s~Z~print~g;s/#/\\/g;s/`(.)(.+?)`(.+?)`/s${1}${2}${1}${3}${1}g\;/g;s;&;(.);g;y^"^$^; print;
![]() |
|< 1 2 3 4 5 >| | ![]() |
50 Einträge, 5 Seiten |