Getting All $_post From Multiple Select Value
I have this HTML code :
Solution 1:
I've found the answer...
<selectname="cars[]"multiple="multiple"><optionvalue="volvo">Volvo</option><optionvalue="saab">Saab</option><optionvalue="opel">Opel</option><optionvalue="audi">Audi</option></select>
and in the PHP part :
$cars = $_POST['cars'];
print_r ($cars);
Post a Comment for "Getting All $_post From Multiple Select Value"