in reply to CGI problem
Another important thing is that when i do not use any mudules I get what i expect that is when i dont use CGI,HTML Template and DBI and simply print the variables to the browser. I am using apache httpd serveruse DBI; use CGI; use HTML::Template; use strict; my ($usr,$pwd,$final,@par,$query_str,$Template,$q); $query_str = $ENV{QUERY_STRING}; if ($query_str='') { $query_str = $ARGV[0]; } @par = split (/['&','=']/,$query_str); $usr = $par[1]; $pwd = $par[3]; $Template = HTML::Template->new(filename => "user_login.html"); $Template->param(USER=>$usr); $Template->param(PASSWD=>$pwd); $final = $Template->output(); $q=CGI->new(); print $q->header(); print $q->start_html('user input'); print $q->h1($final); print $q->end_html();
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: CGI problem
by Anonymous Monk on Nov 06, 2011 at 05:04 UTC |