Thread HTML <button> Tag mit cgi.pm?: Erstellen eines <button> Tag mit cgi.pm
(11 answers)
Opened by Gast at 2007-05-01 21:52
@frankes: Mit CGI.pm scheint es tatsächlich nicht zu gehen. Da bleibt Dir wohl nicht viel anderes übrig als ein anderes Modul zu nehmen, oder einfach selbst eine entsprechende Subroutine zu programmieren...
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/usr/bin/perl use strict; use warnings; print button(type => 'image', name => 'name', value=> 'test', text => 'Hallo'); sub button{ my %args = @_; my $options = ' '; for my $key( qw(type name value) ){ $options .= $key . '="' . $args{$key} . '"' if exists $args{$key}; } my $text = $args{text} || 'defaulttext'; print "<button $options>$text</button>"; } 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/ |