Thread Eine Seite viele Links
(12 answers)
Opened by Alter at 2008-06-08 19:38
Du kannst dafür Frameworks wie
![]() ![]() Code (perl): (dl
)
1 2 3 4 5 6 7 8 #!/usr/bin/perl use strict; use warnings; use MyApp; my $app = MyApp->new; $app->run; Code (perl): (dl
)
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 package MyApp; use strict; use warnings; use base qw(CGI::Application); sub setup { my ($self) = @_; $self->mode_param( 'rm' ); $self->run_modes( step1 => \&step1, step2 => \&stepname, ); } sub step1 { my ($self) = @_; return "<h2>Dies ist Step1</h2>"; } sub stepname { return "Irgendein HTML-Code"; } Links sehen dann so aus: deinedomain.de/script.cgi?rm=step1 bzw. deinedomain.de/script.cgi?rm=step2 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/ |