Let's say I have an array of 'select' named OT_Rate. How do I get the value for each and every 'select'?
I tried this:
foreach($_POST['OT_Rate'] as $key=>$value){
$item = $key;
$Rate = $value;
}
However, it just give me the 'select' which has changes only.