Leser: 18
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl -wT
use CGI qw(:standard);
use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
use strict;
print header;
print start_html("Thank You");
print "<a href='http://localhost/CC/ccdf.html'><img src='/Library/WebServer/CGI-Executables/CC/ccdf.jpg' width='800' height='120' </a>";
print h2("Thank You");
<a href='http://localhost/CC/ccdf.html'><img src='/Library/WebServer/CGI-Executables/CC/ccdf.jpg' width='800' height='120' </a>
print "<a href='http://localhost/CC/ccdf.html'><img src='/Library/WebServer/CGI-Executables/CC/ccdf.jpg' width='800' height='120' </a>";
print qq(<a href='http://localhost/CC/ccdf.html'><img src='http://localhost/CC/ccdf.jpg' width='800' height='120'></a>);
1 2 3 4 5 6 7 8 9 10 11 12
#!/usr/bin/perl -wT use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use strict; print header; print start_html("Thank You"); print a({ -href=>'http://localhost/CC/ccdf.html'}, img({-src=>'http://localhost/CC/ccdf.jpg', -width=>800, -height=>120}) ); print h2("Thank You");