mareimorsy / DB

Simple PHP Query Builder class
106 stars 76 forks source link

how to add Views counter ? #13

Open GeneralMB opened 5 years ago

GeneralMB commented 5 years ago

hello thanks for class but i want add Views counter db->update('users',['last_id' => last_id+1])->where([['id_user','=',$id_user]])->exec();

tranetsys commented 4 years ago

In WHERE clause, as its written in readme, you should use only comma. where('id_user',$id_user)

Sorry for late answer.