Posted by Shelly on 11/05/53 11:17
"Ken Robinson" <kenrbnsn@rbnsn.com> wrote in message
news:1117493471.919362.239190@f14g2000cwb.googlegroups.com...
>
>
> Shelly wrote:
>> 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?
>
> How are you determining what is in each entry?
$picked = $_POST['numList'];
> If you do a
> <?
> echo '<pre>';print_r($_POST);echo '</pre>';
> ?>
> after entering your processing script, what do you see?
I see:
Array
(
[numList] => Array
(
[0] => First
[1] => Third )
[filename] =>
[description] =>
[submit] => Delete Entries
)
>
> Ken
>
Navigation:
[Reply to this message]
|