Hello, I need some help regarding on the checkboxes, How do i get the emp_actno if the checkbox is selected,
for example this data: 01,02,04 are selected and i want to get this 101,102 and 104.
HTML Code:<tr> <input type="checkbox" value="01" name="emp"> <td>john</td> <td>manager</td> <td>101</td> </tr> <tr> <input type="checkbox" value="02" name="emp"> <td>mathias</td> <td>SEO</td> <td>102</td> </tr> <tr> <input type="checkbox" value="03" name="emp"> <td>jack</td> <td>supervisor</td> <td>103</td> </tr> <tr> <input type="checkbox" value="04" name="emp"> <td>Gibson</td> <td>Team leader</td> <td>104</td> </tr>
Thank you in advance



Reply With Quote
Bookmarks