Zend Get the ID of the inserted data
How do I get the primary key ID value for just inserting a single piece of data?
------Solution--------------------
$lastid = $db->lastinsertid ();
This will allow you to get the most recent ID value.
------Solution--------------------
Explore
How do I get the primary key ID value for just inserting a single piece of data?
------Solution--------------------
PHP Code
INSERT into round_table// (Noble_title, first_name, Favorite_Color)// VALUES ("King", "Arthur", "Blue"); Create a $db object, and then ...//in the format of "column name" and "data" to construct the insert array, insert the data row $row = Array ( ' noble_title ' = ' King ', ' first_ Name ' = ' Arthur ', ' favorite_color ' = ' blue ', or//data table inserting data $table = ' round_table ';//I insert a data row and return the number of rows $rows_ Affected = $db->insert ($table, $row); $last _insert_id = $db->lastinsertid ();