Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Tags
more
Archives
Today
Total
관리 메뉴

메모장

CodeIgniter insert id 조회 본문

PHP

CodeIgniter insert id 조회

doopang 2022. 4. 28. 10:08

A table에 insert하고 insert한 id값을 B table에도 insert 해야될 때

public function insert_id()
{
    return mysql_insert_id($this->conn_id);
}

id = $this->db->insert_id();

'PHP' 카테고리의 다른 글

PhpStorm 서버에 반영 하는 법  (0) 2022.02.17