downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

mysqli_stmt::more_results> <mysqli_stmt::get_warnings
[edit] Last updated: Thu, 23 May 2013

view this page in

mysqli_stmt::$insert_id

mysqli_stmt_insert_id

(PHP 5)

mysqli_stmt::$insert_id -- mysqli_stmt_insert_idGet the ID generated from the previous INSERT operation

Description

Object oriented style

Procedural style

mixed mysqli_stmt_insert_id ( mysqli_stmt $stmt )
Warning

This function is currently not documented; only its argument list is available.



add a note add a note User Contributed Notes mysqli_stmt::$insert_id - [2 notes]
up
0
php at paulbutler dot org
5 years ago
This can be used as a property of a statement as well:

<?php

$statement
= $mysqli->prepare($query);

echo
$statement->insert_id;

?>
up
0
hgernhardt at tcnewengland dot org
2 years ago
It should be noted that using mysqli_stmt->insert_id will not result in a unique ID being returned for each execution of a prepared insert statement.  In practice, it appears that the first insertion ID is returned.  If you are performing multiple inserts with the same prepared statement (one invocation of mysqli_stmt::prepare and multiple invocations of mysqli_stmt::execute() for a given statement), and need to keep the unique ID for each insert, use mysqli_connection->insert_id.

 
show source | credits | sitemap | contact | advertising | mirror sites