If you are using Jtable then $tbl_people = & $this->getTable('People', 'ParichayTable', array()); $tbl_people->name = $data['name']; $tbl_people->save(); $tbl_people->id; //last insert id if you are using direct Query then. $db =& JFactory::getDBO(); $db->setQuery( $query ); $db->query(); To get the last insert id: $db->insertid();