Message :
Orders
Showing 1 to 10 of 89 entries

Many times, we need to display different value of column than the value saved for example we save status as 0,1 and display as "Approved" "Not Approved". This can be easily achieved using the PDOCrud using tableColFormatting function and replacing the value of column.
$pdocrud = new PDOCrud(); //column_name, replace, array of value and replace value array (you can also write in one statement, rather than two) $pdocrud->tableColFormatting("order_status", "replace",array("Completed" =>"")); $pdocrud->tableColFormatting("order_status", "replace",array("Pending" =>"")); echo $pdocrud->dbTable("orders")->render();
Showing 1 to 10 of 89 entries