programming-examples/perl/CGI/Create Frame set.pl

22 lines
364 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/local/bin/perl
use CGI;
$co = new CGI;
print $co->header,
$co->frameset(
{-rows=>'40%,60%'},
$co->frame
({
-name=>'top',
-src=>'http://www.yourserver.com/username/cgi/a.htm'
}),
$co->frame
({
-name=>'bottom',
-src=>'http://www.yourserver.com/username/cgi/b.htm'
})
);