I'm running into a bit of trouble processing a form I set up. When I extract
the information from $_POST after submitting the form, everything comes
through fine except for the one form field that uses checkboxes - only the
last value checked comes through in that one.
In my past experience, when using checkboxes in formmail scripts and the
like, what comes through is a list of the values checked, separated by
commas. Does it still work that way when capturing the form data with PHP?
If so, could the commas be throwing it off? I was expecting the contents of
$_POST[keywords] to be a string of keyword IDs separate by commas, which I
could then explode into an array, but instead I only get the last value
checked, as though each box checked replaced the previous one.
The keyword checkboxes are generated from the database, but from looking at
the source on the resulting web page the HTML seems to be fine. Each
checkbox looks something like this:
They all have the name "keywords", but that's the norm for checkboxes and
radio buttons, isn't it? Usually it just groups all the values for each
named group of checkboxes into one string, but not this time, apparently.
Any ideas?
Lynna
--
Resource Centre Database Coordinator
Gallery 44
www.gallery44.org
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
Re: Question about checkboxes in forms
am 03.06.2004 02:56:54 von Chris
Hi Lynna,
Try this instead
Then when you get $_POST, it'll be an array....
That should fix it up =)
Regards,
Chris Smith
Suite 30, 45-51 Huntley St, Alexandria, NSW 2015 Australia
-----Original Message-----
From: pgsql-php-owner@postgresql.org
[mailto:pgsql-php-owner@postgresql.org] On Behalf Of Lynna Landstreet
Sent: Thursday, June 03, 2004 10:44 AM
To: pgsql-php@postgresql.org
Subject: [PHP] Question about checkboxes in forms
Hi folks,
I'm running into a bit of trouble processing a form I set up. When I
extract the information from $_POST after submitting the form,
everything comes through fine except for the one form field that uses
checkboxes - only the last value checked comes through in that one.
In my past experience, when using checkboxes in formmail scripts and the
like, what comes through is a list of the values checked, separated by
commas. Does it still work that way when capturing the form data with
PHP? If so, could the commas be throwing it off? I was expecting the
contents of $_POST[keywords] to be a string of keyword IDs separate by
commas, which I could then explode into an array, but instead I only get
the last value checked, as though each box checked replaced the previous
one.
The keyword checkboxes are generated from the database, but from looking
at the source on the resulting web page the HTML seems to be fine. Each
checkbox looks something like this:
They all have the name "keywords", but that's the norm for checkboxes
and radio buttons, isn't it? Usually it just groups all the values for
each named group of checkboxes into one string, but not this time,
apparently.
Any ideas?
Lynna
--
Resource Centre Database Coordinator
Gallery 44
www.gallery44.org
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?