Thread Wert Prüfen (7 answers)
Opened by -umbrella at 2010-01-27 01:22

roooot
 2010-01-28 15:00
#131407 #131407
User since
2008-03-03
276 Artikel
BenutzerIn
[default_avatar]
geht nicht auch:
Code (perl): (dl )
1
2
3
4
5
[code=perl]
my $action = param('action') || undef;
$action    = defined $action  ? $action =~ s/[^a-zA-Z0-9_-]//g
           : 'home'
           ;
oder
Code (perl): (dl )
1
2
3
my $action = defined param('action') ? param('action') =~ s/[^a-zA-Z0-9_-]//g
           : 'home'
           ;


Schau dir auch mal CPAN:Data::FormValidator an.
Last edited: 2010-01-28 15:03:04 +0100 (CET)
Viele Grüße :)

View full thread Wert Prüfen