sels
sels

Reputation: 1

if the booking id is varriable character, how to return last inserted id in codegniter

Blockquote

how to return last inserted id , if the booking id is variable character in codeigniter**

strong text

**

Upvotes: -1

Views: 95

Answers (1)

Chibueze Agwu
Chibueze Agwu

Reputation: 1000

If you are using codeigniter 3 use this:

$this->db->insert_id();

If you are using codeigniter 4 use this:

$this->db->insertID();

all this should be within you model or where you called the database connect. I hope this help you else call my attentions okay?

Upvotes: 0

Related Questions