Welcome Guest, Not a member yet? Register   Sign In
[CI4] Toolbar DB Query And Event Duplication
#7

PHP Code:
// Change this to the below.
$row $this->select('option_value')
           ->where("option_key",$key)
           ->get()
       ->getRow();

// Change to this and see if it makes a deference.
$query $this->select('option_value')
           ->where("option_key",$key)
           ->get();

$row $query->getRow(); 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: [CI4] Toolbar DB Query And Event Duplication - by InsiteFX - 10-16-2020, 01:20 PM



Theme © iAndrew 2016 - Forum software by © MyBB