please help.
so i have this simple code
sub print_frameset {
print <<EOF;
<html><head><title>$TITLE</title></head>
<frameset rows="20,80">
<frame src="top.htm" name="top">
<frame src="bottom.htm" name="bottom">
</frameset>
</html>
EOF
;
}which works great - no problem so far.
but what i need to do is replace in the bottom frame a page that i create dynamically from within the same script that has the above code.
ex. say i have
sub anypoo{
print "<html><body><h1>hi there</h1></body></html>
}
how can i tell the script to put it in the "bottom" frame??thanks a bunch! mario
_______________________________________________ ActivePerl mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
