4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
print $cgi->start_html(-title => 'Testseite',
-style=>{'src'=>'../css/text.css'},
-head => meta({-http_equiv => 'Content-Type',
-content => 'text/html; charset=iso-8859-1'}),
-BGCOLOR => '#EBC39D',
-TEXT => '#000000',
-LINK => '#000000',
-VLINK => '#000000',
-ALINK => '#000000',
-LEFTMARGIN => '0',
-TOPMARGIN => '0',
-MARGINWIDTH => '0',
-MARGINHEIGHT => '0',
-SCROLL => 'auto', &n
bsp;
);
Undefined subroutine &main::meta called at ./testscript.cgi line 27.
1
2
-head => meta({-http_equiv => 'Content-Type',
-content => 'text/html; charset=iso-8859-1'}),
1
2
-head => $cgi->meta({-http_equiv => 'Content-Type',
-content => 'text/html; charset=iso-8859-1'}),
4 Einträge, 1 Seite |