|< 1 2 3 >| | 23 Einträge, 3 Seiten |
1
2
3
#!/usr/bin/perl
print "<html><head><title>Toller Test</title></head><body bgcolor="#0000ff">Hallo Welt... is das schön hier....blablabla</body></html>"
1
2
3
4
5
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<html><head><title>Toller Test</title></head><body bgcolor="#0000ff">Hallo Welt... is das schön hier....blablabla</body></html>"
1
2
3
4
5
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print '<html><head><title>Toller Test</title></head><body bgcolor="#0000ff">Hallo Welt... is das schön hier....blablabla</body></html>'
1
2
3
4
5
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print qq~<html><head><title>Toller Test</title></head><body bgcolor="#0000ff">Hallo Welt... is das schön hier....blablabla</body></html>~;
|< 1 2 3 >| | 23 Einträge, 3 Seiten |