8 Einträge, 1 Seite |
[Mon Dec 27 00:32:20 2004] [error] [client 127.0.0.1] HTML::Template->param() : You gave me an odd number of parameters to param()! at \wampp1\cgi-bin\CMS.CGI line 64
$template->param(INHALT => Wegweiser());
1
2
3
4
5
6
7
8
9
sub Wegweiser {
if (!param('aktion') || param('aktion') eq 'Home') { Home() }
elsif (param('aktion') eq 'Forum') { Forum() }
elsif (param('aktion') eq 'Kontakt') { Kontakt() }
elsif (param('aktion') eq 'Empfehlen') { Empfehlen() }
elsif (param('aktion') eq 'Impressum') { Impressum() }
elsif (param('aktion') eq 'Spiel') { Spiel() }
else { GibtEsNicht() }
}
8 Einträge, 1 Seite |