Just use a simple multi-select select:
Copy the code The code is as follows:
echo<<
EOT;
/*Output the value obtained by GET (array)*/
if (isset ($_GET["submit"])) {
foreach($_GET["listVar"] as $value){
echo $value."
}
}
?>
http://www.bkjia.com/PHPjc/327484.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327484.htmlTechArticleJust use a simple multiple-select select: Copy the code as follows: ?php echoEOT form action="" method=get select name="listVar[]" multiple="multiple" size=3 optionfirst/option...