Hi I'm sure this has been answered many times, but can someone answer it again, i can't figure it out.
The problem is I have a static, multiple select box in a form, when i submit the form I only get the last option the user selected. And I can't print it in a foreach statement.
here's my code:
foreach($PriceRange as $key => $value)
{
echo"$key<br>";
}
this is suposed to print a list of options the user selected, like so:
$100
$200
$300
...
It's just not hapening. 🙁
Can anyone help?