thanks for replying. As I said, I know thats what I need to do, I'm just not sure how the code should look.
I know how to post to a variable e.g.
$_POST[‘something'];
and I know how to create an array e.g.
$sale= array(
"Toothbrush" => "discounted",
"Shaver" => "discontinued",
"foam" => "standard"
);
...what I'm not sure of his how the $_POST and array fit together.