I want to pass a selected radio button's id name and some div element data to the server and process those data on the server side.
For an example the below is my CGI code.
use strict;
use CGI;
print
"Content-type:text/html\r\n\r\n",
"<html>",
"<body>",
"<div style='float:left'>",
"<input type='radio' name='selections' id='red'>",
"<input type='radio' name='selections' id='blue'>",
"<input type='radio' name='selections' id='green'>",
"</div>",
"<div style='float:left'>",
"<div style='float:left' id='redtime'>red time</div>",
"<div style='float:left' id='blutime'>blue time</div>",
"<div style='float:left' id='greentime'>green time</div>",
"</div>",
"<input type='button' value='clickme'/>",
"</body>",
"</html>";
In the above CGI file I need to pass the values of the selected radio button's id value and any of the div elements' data. How do I do that in CGI?