Where condition Apply Where conditions in crud (improved in v 4.2)

You can add where condition to filter records using where() function. In simplest term, you can pass the column name and value to apply where condition, default "=" (equalto) operator will be used if you don't pass any operator as third parameter

Below example shows how to generate queries like WHERE `order_date` > ? AND `order_amount` >= ? AND ( `order_status` = ? OR `order_status` = ? )

  
                            $pdocrud = new PDOCrud();
                            /**
                            * Add where condition
                            * @param   string   $colName                          column name for which where condition to be applied
                            * @param   string   $val                              value of column
                            * @param   string   $operator                         any operator like =, !=, default value is "="
                            * @param   string   $andOroperator                    whether to use "and" or "or" operator, if empty, default andOrOperator = "and" will be used
                            * @param   string   $bracket                          whether to use opening "(" or closing bracket ")", leave empty if not required
                            * return   object                                     Object of class
                            */
                            $pdocrud->where("order_date", "2015-09-08", ">");
                            $pdocrud->where("order_amount", 50, ">=");
                            $pdocrud->where("order_status", "Completed", "=", "" ,"(");
                            $pdocrud->where("order_status", "Pending", "=", "OR" ,")");
                            echo $pdocrud->dbTable("orders")->render();
                        

Orders

Showing 1 to 10 of 25 entries

# ID Order no Order date Customer name Order amount Order status Actions
1 47 96349 2016-09-08 Deacon Tyson 71 Completed
2 51 37429 2016-09-08 Cooper Jensen 77 Completed
3 53 62391 2016-09-08 96 Completed
4 54 54999 2016-09-08 50 Completed
5 56 409 2016-09-08 68 Completed
6 60 74815 2016-09-08 Caleb Lynn 95 Completed
7 61 37748 2016-09-08 Madeson Robbins 73 Completed
8 62 34490 2016-09-08 Emily Richmond 77 Completed
9 63 37920 2016-09-08 Damian Wilson 67 Completed
10 67 37251 2016-09-08 Rose Barry 64 Completed
# ID Order no Order date Customer name Order amount Order status Actions