CodeIgniter Forums
can someone show me function insert_id(); in codeinger4 ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: can someone show me function insert_id(); in codeinger4 ? (/showthread.php?tid=84605)



can someone show me function insert_id(); in codeinger4 ? - startup - 10-25-2022

please show me function insert_id() in  codeter 4 ?

thank you verry much


RE: can someone show me function insert_id(); in codeinger4 ? - kenjis - 10-25-2022

https://codeigniter4.github.io/CodeIgniter4/database/helpers.html#db-insertid


RE: can someone show me function insert_id(); in codeinger4 ? - startup - 10-25-2022

(10-25-2022, 10:33 PM)kenjis Wrote: https://codeigniter4.github.io/CodeIgniter4/database/helpers.html#db-insertid

i use insertId follow above link it info

Call to undefinedmethod CodeIgniter\Database\MySQLi\Builder::insertID() 
Call to undefined method CodeIgniter\Database\MySQLi\Builder::insertID()
PHP Code:
public function Add($table,$data){
        if(isset($data) && $data != NULL){
            $builder $this->db->table($table);
            $builder->insert($data);
            return $builder->insertID();
        }
    



RE: can someone show me function insert_id(); in codeinger4 ? - InsiteFX - 10-26-2022

PHP Code:
return $this->db->insertID(); 



RE: can someone show me function insert_id(); in codeinger4 ? - startup - 10-26-2022

thank you https://forum.codeigniter.com/member.php?action=profile&uid=75 and https://forum.codeigniter.com/member.php?action=profile&uid=90

it's perfect
done