Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends,

I Have a html page in which der is a dropdown combobox which contains some value. when a person selects a value n press submit button, a perl program is called in which i have to read the value selected in the combobox in a local variable.

html code:

<html>
<head>
</head>
<body>
<form name="form1" action="/cgi-bin/read.pl" method="post">
<select name="selectFile">
<option value="one">One</option>
<option value="two">Two</option>
</select>
<input type="submit" value="Send" name="sbmt">
</form>
</body>
</html>

Perl Code:

In perl m accessing the value as:

$FileName = $query->param('selectFile'); // selectFile is the name of the combobox in html.

If i try to print $FileName, it doesnt print anything.

can any1 help me please..
Thanks
Rahul
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900