Welcome Guest, Not a member yet? Register   Sign In
Incrementing DB values
#2

With QueryBuilder this should work, not tested but give it a try.

PHP Code:
$db      db_connect();
$builder $db->table('your_table');

$data = ['votes' => '(votes + 5)'];
// or
$votes $votes 5;
$data = ['votes' => $votes];

$builder->where('id'$id)
        ->update($data); 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Incrementing DB values - by Derek - 11-12-2020, 04:54 PM
RE: Incrementing DB values - by InsiteFX - 11-13-2020, 01:20 PM
RE: Incrementing DB values - by wdeda - 11-13-2020, 03:20 PM
RE: Incrementing DB values - by Derek - 05-14-2021, 09:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB