I was using simple multiple rows update using checkboxes,php and sql, but now i am moving to jquery.datatables http://www.datatables.net/
I am not able to get checkbox values in it. Any one can tell me is there any method or i am doing any mistake ?
Following is method i am using :
if (isset($_POST['checkbox'])) {
$checkbox = $_POST['checkbox'];
$id = "('" . implode( "','", $checkbox ) . "');" ;
mysql_query ("update value1 from table where id in '$id'");
}
Thanks