Original Source
https://pdocrud.com/demo/pages/crud-table-bulk-update
Bulk Records Update
Update many records directly on crud table (added in version 1.9)
You can update multiple rows of data directly in table using the bulkCrudUpdate function. It allows data update directly in crud table so you can update multiple rows of data very fast. You can apply this function for more than a column to update multiple column data simultaneously. After change on data, You need to press the save button on the top of the table (near add button) to save the entries. Please note that this function works with single table only having primary key in columns.
$pdocrud = new PDOCrud();
//$pdocrud->bulkCrudUpdate("customer_name", "textarea",array("data-some-attr" =>"some-dummy-val"));
$pdocrud->bulkCrudUpdate("order_amount", "text",array("data-some-attr" =>"some-dummy-val"));
$pdocrud->bulkCrudUpdate("customer_name", "select", array("data-cust-attr" =>"some-cust-val"),array(
array(
"Xenos Clarke",
"Xenos Clarke"
),
array(
"Cooper Jensen",
"Cooper Jensen"
),
array(
"Deacon Tyson",
"Deacon Tyson"
)));
//lets also remove action buttons(edit/delete/view) and checkbox(optional)
$pdocrud->setSettings("actionbtn", false);
$pdocrud->setSettings("checkboxCol", false);
echo $pdocrud->dbTable("orders")->render();