
Running Two Scripts at Once
Quote:
> Can this be done? I have a HTML form that when submitted, I
> want to split the browser window into two frames and run a perl script
> that will display data in each frame. Any ideas or hints???
While I'm no expert, wouldn't it be easier to output the HTML to create
the two pages wanted to local disk e.g /temp/pageone & /temp/pagetwo
(I'm assuming these are accessible by the web daemon).
Then you could use a simple HTML page to create the frames e.g. below:-
<HTML><HEAD><TITLE>Title</TITLE></HEAD>
<FRAMESET COLS="20%,*" border=no>
<FRAME SRC="/temp/pageone.html" NAME="ONE">
<FRAME SRC="/temp/pagetwo.html" NAME="TWO">
</FRAMESET>
</HTML>
Or something along those lines, of course you would need to remove the
temp pages after a time, assuming that as they are created dynamically
the content changes.
Please note I'm no HTML expert as I'm a pharmacist but that's how I'd do
it on my intranet web server.
HTH
Richard
--
Richard Eyles
Computer Services Pharmacist
Birmingham Heartlands Hospital, Birmingham UK