PDOCrud Replace column value

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();
                                

Orders

Showing 1 to 10 of 63 entries

# ID Order no Order date Customer name Order amount Order status Actions
1 43 0 2016-09-23 Cooper Jensen 20
2 44 22241 2016-09-08 Deacon Tyson 29
3 47 96349 2016-09-08 Deacon Tyson 71
4 50 77099 2016-09-08 Xenos Clarke 20
5 51 37429 2016-09-08 Cooper Jensen 77
6 53 62391 2016-09-08 96
7 54 54999 2016-09-08 50
8 55 83323 2016-09-08 37
9 56 409 2016-09-08 68
10 57 50683 2016-09-08 Hilary Conner 28
# ID Order no Order date Customer name Order amount Order status Actions