QUOTE(Quik @ Sep 19 2002, 01:07 PM)
I believe each entry is stored in a array that you specify. In your case
$options[x]
just saw fyrestorms post. Maybe not, but thats how I remember it to be
you're absolutely right quik, let me help her out a little (or at least try to)
------------------------------
ok here's how it works you have your select box that has the name options[]
when they select their items it fills the array, so here's a couple things you need to do:
1) what's the max num of items they can select?
2) what are you doing with that data?
once you know that, you can extract the data by running a for loop
from what you said i'm gonna assume that you want the data comma separated
CODE
$data =""; // to hold data
for($i=0, $i <= $max, $i++) {
$data .= "$options[$i],";
}
// the .= operator concatenates what's in the i'th cell of options to what's already in data, so you'll get 'something, something, something' which is what i think you want
let me know if that's not what you need.