Re: Retrieving the multiple values set by a form
- From: "Girish" <girishbhat6620@xxxxxxxxx>
- Date: 27 Sep 2006 22:19:05 -0700
Ron Barnett wrote:
In the example you have given, which equates to a Get, the variables will
indeed overwrite each other with only the last value surviving, as stated by
lorento.
Hi Ron and everyone else,
Thanks for your response. Let me expand a bit on my requirement. I have
a dynamically generated form where I am now trying something similiar.
To wit:
<input name='inp[0]' type='checkbox' value='first value'>
<input name='inp[1]' type='checkbox' value='second value'>
<input name='inp[2]' type='checkbox' value='third value'>
..
..
etc
Basically, I present a user with a dynamically generated checklist and
I am trying to see all the values that he has checked.
once this is received by your PHP script the values may be retrieved :
$myArray = $_REQUEST('ip'); // note no subscripts required
$myArray['0'] will contain 'first value', $myArray['1'] the second value,
and so on
Doing as you have suggested, count($myArray) gives the correct number
of values ticked.
But only $myArray['0'] is set!
$myArray['1'], $myArray['2'] , ..., etc are not set!
Not to flame or anything, I AM quite surprised by how arcane processing
a checklist in php is turning out to be. :-)
Thanks again!
Girish
.
- Follow-Ups:
- Re: Retrieving the multiple values set by a form
- From: Jerry Stuckle
- Re: Retrieving the multiple values set by a form
- References:
- Retrieving the multiple values set by a form
- From: Girish
- Re: Retrieving the multiple values set by a form
- From: Ron Barnett
- Retrieving the multiple values set by a form
- Prev by Date: Re: Seeking editor for serialized files
- Next by Date: Re: open source ajax/php html editors?
- Previous by thread: Re: Retrieving the multiple values set by a form
- Next by thread: Re: Retrieving the multiple values set by a form
- Index(es):
Relevant Pages
|