Re: [PHP] using for loop in function

2007-03-28 Thread Jim Lucas
itoctopus wrote: I don't quite understand why you're naming the checbox, you can easily go for name={$name}[]; -- itoctopus - http://www.itoctopus.com "Jim Lucas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Richard Kurth wrote: The function below will create a group of check

Re: [PHP] using for loop in function

2007-03-28 Thread itoctopus
I don't quite understand why you're naming the checbox, you can easily go for name={$name}[]; -- itoctopus - http://www.itoctopus.com "Jim Lucas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Richard Kurth wrote: > >The function below will create a group of checkboxes it will a

Re: [PHP] using for loop in function

2007-03-28 Thread Myron Turner
Richard Kurth wrote: The function below will create a group of checkboxes it will also check the checkbox that is stored in the table field that is in $select_value this works fine if there is only one value in the variable but if there is more stored like 1,2,3,4 it will not work. I am trying

Re: [PHP] using for loop in function

2007-03-27 Thread Jim Lucas
Richard Kurth wrote: The function below will create a group of checkboxes it will also check the checkbox that is stored in the table field that is in $select_value this works fine if there is only one value in the variable but if there is more stored like 1,2,3,4 it will not work. I am trying

Re: [PHP] using for loop in function

2007-03-27 Thread Chris
Richard Kurth wrote: The function below will create a group of checkboxes it will also check the checkbox that is stored in the table field that is in $select_value this works fine if there is only one value in the variable but if there is more stored like 1,2,3,4 it will not work. I am trying