what i am doing is "pass the value from html page to cgi script"
in Html:
<form action="./findpic.cgi" method="post">
<input type="image" src="./IMGJ01.jpg" name="pic1" value="IMGJ01.jpg">
in findpic.cgi:
#! f:/perl/bin/perl
use CGI qw/:standard :html3/;
...
...
$name = param("pic1");
print $name;
output ("IMGJ01.JPG") is printed under Netscape,
but fail in IE. i think is the param problem!
anyone get idea to fix it?
i have tried to work the cgi script in other way, such:
use CGI;
$query = new CGI;
$name = $query->param('pic1');
print $name;
that is working in IE and Netscape