Re: How to save the state of a CGI script

2005-05-29 Thread Randal L. Schwartz
> "Ankur" == Ankur Gupta <[EMAIL PROTECTED]> writes: Ankur> a.cgi calls b.cgi through POST method. Why? Why? CGI is a protocol that permits a server to launch a process to handle a browser hit. YOU SHOULD NOT HAVE CGI "calling" EACH OTHER. :-( -- Randal L. Schwartz - Stonehenge Consulti

Re: How to save the state of a CGI script

2005-05-29 Thread Randal L. Schwartz
> "Ankur" == Ankur Gupta <[EMAIL PROTECTED]> writes: Ankur> a.cgi calls b.cgi through POST method. I am collecting all the parameters Ankur> using the param function. Ankur> b.cgi draws a table based on the input from a.cgi's form. Ankur> The table's row are initially sorted by first column.