मेरे पास एक सम्मिलित क्वेरी (सक्रिय रिकॉर्ड शैली) है जिसका उपयोग फॉर्म फ़ील्ड को MySQL तालिका में सम्मिलित करने के लिए किया जाता है। मैं अपनी क्वेरी के वापसी मूल्य के रूप में सम्मिलित संचालन के लिए अंतिम ऑटो-इंक्रीम्ड आईडी प्राप्त करना चाहता हूं, लेकिन मुझे इसमें कुछ समस्याएँ हैं।
नियंत्रक के अंदर:
function add_post(){
$post_data = array(
'id' => '',
'user_id' => '11330',
'content' => $this->input->post('poster_textarea'),
'date_time' => date("Y-m-d H:i:s"),
'status' => '1'
);
return $this->blog_model->add_post($post_data);
}
और अंदर मॉडल:
function add_post($post_data){
$this->db->trans_start();
$this->db->insert('posts',$post_data);
$this->db->trans_complete();
return $this->db->insert_id();
}
मुझे मॉडल में add_post की वापसी के रूप में कुछ भी नहीं मिला है
db->insert_id()
रिटर्न । लेन-देन पूरा करने से पहले सुनिश्चित करें कि आप अपना प्राप्त कर लें ।false
db->trans_complete()
insert_id()