Re: CGI query and FORM

2007-12-13 Thread Randal L. Schwartz
> "Praki" == Praki <[EMAIL PROTECTED]> writes: Praki> This comes first of all the lines in my cgi file. so it parse all the Praki> POST and GET methods.. Praki> i m not able to the values from FORM varible.. Praki> $query = new CGI; Praki> $sid = $query->cookie('CGISESSID') || $query->param(

CGI query and FORM

2007-12-13 Thread Praki
Hi All, I m creating the session in the Perl. all the functions are done in a single file. the operations are performed by the command line arguments. for managing the session i m using the CGI. but when i create a CGI object then all the Input from both POST and GET methods are parsed by it. i m

Next Page gets downloaded in Perl

2007-12-13 Thread Praki
Greetings All I have a Perl file in which i m doing all the operaions in one file based on the command line arguments. login.cgi . . . $query = new CGI; $sid = $query->cookie('CGISESSID') || $query->param('CGISESSID') || undef; $submit_value=$query->param("submit"); if ($sid ne ""){ print $query-