Welcome Guest, Not a member yet? Register   Sign In
Upgrade Model CI3 to CI4
#4

Try this I hope it will help you get what you are looking for



PHP Code:
namespace App\Models;

use 
CodeIgniter\Model;

class 
myClass extends Model {

    public function myFunc()
    {
        
$this->table('table');
        
$this->select('id''name');
        
$this->where(['status' => 1'op' => '']); // ->where('status', 1)->where('op', '');
        -----
        -----
        -----

        $query =  $this->getResult();
    }



I just hope it will help you else call me back to it. I am here to help and also receive help
Reply


Messages In This Thread
Upgrade Model CI3 to CI4 - by cloude - 02-14-2021, 04:39 AM
RE: Upgrade Model CI3 to CI4 - by iRedds - 02-14-2021, 09:32 AM
RE: Upgrade Model CI3 to CI4 - by wdeda - 02-14-2021, 09:43 AM
RE: Upgrade Model CI3 to CI4 - by Chivinsdev - 02-16-2021, 01:55 AM



Theme © iAndrew 2016 - Forum software by © MyBB