RE: [PHP] Not losing variables in forms w/ checkboxes

2001-05-18 Thread scott [gts]
you need to specify those extra braces for any multi-select HTMl object i had the same problem with a: > -Original Message- > From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] > Subject: RE: [PHP] Not losing variables in forms w/ checkboxes > > Just append a pair of

RE: [PHP] Not losing variables in forms w/ checkboxes

2001-05-18 Thread Johnson, Kirk
Just append a pair of brackets to the NAME in the FORM: suspendingAgent[]. This will create an array for the boxes that get checked. To get the array to a comma separated list on the processing page, try: $string = implode (",", $suspendingAgent); Kirk > -Original Message- > From: Andr