ThinkPHP write array insert and get the latest inserted data ID instance

Source: Internet
Author: User
This article mainly introduces ThinkPHP's method of writing array inserts and obtaining the latest inserted data ID. The example describes ThinkPHP's method of operating databases based on arrays, which has some reference value, for more information about ThinkPHP, see ThinkPHP.

This article describes how thinkphp writes an array to insert and obtains the latest inserted data ID. Share it with you for your reference. The specific method is analyzed as follows:

This example describes how thinkphp writes array insert by itself. here we use registered users as an example.

The specific implementation code is as follows:

The code is as follows:

Public function insert2 (){
Header ("Content-Type: text/html; charset = utf-8 ");
$ Dao = M ("User"); // Construct the written data array
$ Data ["username"] =$ _ POST ["username"];
$ Data ["password"] = md5 ($ _ POST ["password"];);
$ Data ["email"] =_ _ POST ["email"];
$ Data ["regdate"] = time (); // write data
If ($ lastInsId = $ Dao-> add ($ data) {// $ lastInsId is the id of the latest inserted data
Echo "insert data id: $ lastInsId ";
} Else {
$ This-> error ('data writing error! ');
}
}

I hope this article will help you with ThinkPHP framework programming.

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.