Posted by Shelly on 10/05/80 11:17
I have a list box with multiple selects. I define the name as numList[]. I
get the values from
$picked = $_POST['numList'];
It retrieves values for all those selected.
If the entries are, say,
First
Second
Third
and the first and third are select then $picked[0] has "First" and
$picked[1] has "Third".
If, however, the entries are:
First one
Second one
Third one
Then the values are for $picked[0] and $picked[1] are "First" and "Third"
respecticely.
How do I retrieve the entire value and not just the first word?
Shelly
[Back to original message]
|