< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
php gets the checkbox value of the multi-select box $ area_arr = array();
if($_GET['action']=="submit"){
$area_arr = $_POST['area'];
}
echo "You select The specified area is: ";
foreach ($area_arr as $k=>$v){
echo $v." ";
}
?>