php - PDO lastInsertId() -


i'm using pdo on mysql database , try retrive lastinsertid().

i thought going last inserted vlue in column id in table primary_key. however, 0 output

        $statement = "select last_insert_id() my_table";         $sql = $dbh->query($statement);         $lastid = $sql->fetch(pdo::fetch_num);         $lastid = $lastid[0];         return $lastid; 

pdo class has method called lastinsertid(). can use method after inserting record/records collect last insert id.


Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -