Thread Perl Get-Methoden Problem (7 answers)
Opened by Gast at 2008-10-13 22:13

Gast Gast
 2008-10-13 22:13
#115475 #115475
Also, kommen ich ma direkt zum Problem.

Ich habe Probleme in einer Get Methode das ";" Zeichen zu empfangen.

Testscript [eben als Beispiel hingeklatscht :P] :


Code (perl): (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl 
use CGI;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser);
print "Content-type: text/html\n\n";
$query = CGI->new(); 
$option = $query->param("option");

print $option;


so, wenn ich nu zb so aufrufe :

test.pl?option=Hallo wie gehts ?

Dann wird "Hallo wie gehts?" ausgegeben.

Wenn ich nun aber :

test.pl?option=Hallo; wie gehts ?

aufrufe,wird leider NUR "Hallo" ausgegeben :(

Wie kann ich das lösen ?

MFG

View full thread Perl Get-Methoden Problem