Thread Button funktionieren nicht! (28 answers)
Opened by Gast at 2004-12-15 11:18

renee
 2004-12-15 15:46
#3730 #3730
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use CGI;
my $cgi = CGI->new();
my %params = $cgi->Vars();

if($params{neu}){
print $cgi->redirect(-url => '/index.html');
}
else{
print $cgi->header(-type => 'text/html');
do_the_rest();
}

exit;

sub do_the_rest{
print $cgi->start_form(),
$cgi->submit(-name => "neu", -value => "Neu"),
$cgi->end_form();
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Button funktionieren nicht!