Re: Simple CGI question

2003-11-07 Thread R. Joseph Newton
Eric Walker wrote: > Newbie here but hope this helps. > > You have a page linked to the frame on the left right? All you need to > do is have your CGI script write the new page. You use the info from > the frame on the right and pass the values to your cgi script. Then let > your CGI script writ

Re: Simple CGI question

2003-11-06 Thread Eric Walker
Newbie here but hope this helps. You have a page linked to the frame on the left right? All you need to do is have your CGI script write the new page. You use the info from the frame on the right and pass the values to your cgi script. Then let your CGI script write out a new html page using the

Re: Simple CGI question

2003-11-06 Thread Bee
You would like to use this : in your html page of your right frame. Hope this help - Original Message - From: "Jack" <[EMAIL PROTECTED]> To: "CGI1" <[EMAIL PROTECTED]> Sent: Friday, November 07, 2003 8:11 AM Subject: Simple CGI question >

Simple CGI question

2003-11-06 Thread Jack
Hello, I'm trying to redirect the output of my CGI (written in Perl) to another frame, but I'm not exactly sure how to do this. i.e. I have two frames on my page one on the right and one on the left. There is a form on the right frame. When the user clicks on the Submit button on my form, I'd l

Re: Simple CGI Question

2003-11-05 Thread Tore Aursand
On Wed, 05 Nov 2003 01:26:20 -0500, Jack wrote: > In my perl CGI script, I'm trying to extract the PID > that corresponds to it. The '$$' variable holds the pid; perldoc perlvar > How come it's not possible to do something like: > > print ""; > print `time`; > print ""; No need to do a syste

Re: Simple CGI Question

2003-11-04 Thread Sudarshan Raghavan
Jack wrote: Hello, In my perl CGI script, I'm trying to extract the PID that corresponds to it. $$ contains the PID that corresponds to your script (perldoc perlvar) How do I do this? I'm also trying to extract the timestamp. The built-in perl function localtime will interest you perldoc -f loc

Re: Simple CGI Question

2003-11-04 Thread Andrew Gaffney
Jack wrote: Hello, In my perl CGI script, I'm trying to extract the PID that corresponds to it. How do I do this? I'm also trying to extract the timestamp. How come it's not possible to do something like: print ""; print `time`; print ""; Try this: print ""; print scalar localtime; print ""; --

Simple CGI Question

2003-11-04 Thread Jack
Hello, In my perl CGI script, I'm trying to extract the PID that corresponds to it. How do I do this? I'm also trying to extract the timestamp. How come it's not possible to do something like: print ""; print `time`; print ""; Any help would be greatly appreciated, Jack _