Zend Getting the ID of the inserted data workaround

Source: Internet
Author: User
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 ();
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.