RE: checkboxes to action pages

2001-09-18 Thread Andy Ewings
Mike I assume the check boxes represent the same field in the database? So for example you might have three checkboxes for 3 employees called Andy, Mike and Steve and you want to delete the employees whose box is checked? If this is the case then.. All of your boxes should be called the

Re: checkboxes to action pages

2001-09-18 Thread Michael Vinson
Thanks Andy, I simply indexed my checkbox value (1,2,3...) inside a cfloop voila' I have my number(ed) values which correspond to the checkboxes. This technique will have to do... But I would still like to figure how to pass the array of checked values (e.g. 0,0,1,1...) to my action page. Oh

Re: checkboxes to action pages

2001-09-18 Thread Koo Pai Lao
instead of having the checkbox have a value of no, let it have a numeric value which could be an ID, or an increment and u can trace it back to the list :) From: Michael Vinson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: checkboxes to action