in reply to Cgi and Perl : how to use data once people selects the checkbox field?
use strict; use CGI; my $query = new CGI; ## This will get the 'value' my $selected_value = $query->param('color1');
Update:
I just noticed that you are using 'multipule' in your select.
The onchange event will not allow you to select multipule items.
You will need a seperate 'submit' button for that to work.
my @selected_value = $query->param('color1');
|
|---|