5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
my $cgi;
my $formularhtml;
chdir("/opt/htdocs/htmlbase/");
my @standardliste = glob("*.html");
$cgi->popup_menu(-name=>'StandardTemplates',
-values=>[@standardliste]);
$formularhtml = param('StandardTemplates');
my $cgi = new CGI;
1
2
3
4
5
6
7
8
9
use CGI;
my $cgi = new CGI;;
my $formularhtml;
chdir("/opt/htdocs/htmlbase/") or die ('Kann nicht das Verzeichnis wechseln');
my @standardliste = glob("*.html");
die ('keine Dateien gefunden!') if not scalar @standardliste;
print $cgi->popup_menu(-name=>'StandardTemplates', -values=>[@standardliste]);
$formularhtml = $cgi->param('StandardTemplates');
GwenDragon+2008-10-31 13:16:03--Welche Fehlermeldungen gibt es?
Code: (dl )1
2
3
4
5
6
7
8
9use CGI;
my $cgi = new CGI;;
my $formularhtml;
chdir("/opt/htdocs/htmlbase/") or die ('Kann nicht das Verzeichnis wechseln');
my @standardliste = glob("*.html");
die ('keine Dateien gefunden!') if not scalar @standardliste;
print $cgi->popup_menu(-name=>'StandardTemplates', -values=>[@standardliste]);
$formularhtml = $cgi->param('StandardTemplates');
Was zeigt das an, wenn du es als Skript aufrufst?
5 Einträge, 1 Seite |