Re: [PHP] build an array of checkbox

2005-03-18 Thread Leif Gregory
Hello Tomás, Friday, March 18, 2005, 1:31:40 PM, you wrote: T> I have a doubt, I want to build an array of checkbox, why? well T> because I list a recordset from data base, and I want to delete the T> current record when the check is selected by the click mouse. for T> example the editor of mail.y

Re: [PHP] build an array of checkbox

2005-03-18 Thread Forest Liu
I guess you have the experiences with VB development, right? :) I think it is not a problem in php, because the index of an array in php can be a string. That is the solution.You can name the checkboxes in a certain sequence in your html doc.Then use array to judge in php, such as foreach. wish hel