[RESOLVED] check one and check all check box and delete--script
hi
I want to use a check box to select records to be deleted and delete the selected records. how can i do this..please direct me
thanks
keats :)
Re: check one and check all check box and delete--script
One way would be to use javascipt (to select all check boxs via one click).
And label the check bocs like...
HTML Code:
<input name="name_1" type="checkbox">
<input name="name_2" type="checkbox">
Then on the page which catch there restuls, just loop through them and check it they are true or false, if there true grab there id.
_
Re: check one and check all check box and delete--script
thanks i used the same logic as u told..working fine....thanks anyway