thanks for the reply.
I don't know much about these technologies. I had heard of them only conceptually.
This is what I had tried.
Instead of rendering a html page, I triggered cgi script to do that
something like the below
using cgi script to do that
Code:
http://url/output.cgi
instead of using a html page
Code:
http://url/some.html
#################
this gives me another potential problem
Example:
cgi script generates the html file and displays ( output.cgi )
the form in the html page is something like
Code:
<form action="output.cgi" method="POST">
<select>
..
</select>
<input type="submit" value="Goo">
</form>
one item is selected from the drop down listing
since the same cgi script is called which is output.cgi
I have the statement in output.cgi something like
Code:
use CGI;
my $cgi = CGI->new();
print $cgi->header('text/html');
The parameter values are overridden and am unable to use them anymore
Selection values are gone.
Could you please provide some pointers to overcome this ?
Thank you very much