try {
$stmt->execute($sq);
} catch (PDOException $e) {
print_r($e->getMessage());
$stmt->debugDumpParams();
}
As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live().
$('.my-action').on('click', function() {
// Список выбранных checkbox ов
var $checkboxes = $('.my-table').find(':checkbox:checked');
// Формируем массив пар ключ-значение
var data = $checkboxes.serializeArray();
// Отправляем данные на сервер
$.post('/server/action', data, function(response) {
/* Обрабатываем ответ /*
});
});