mysqli_stmt_num_rows> <mysqli_stmt_init
Last updated: Mon, 28 Dec 2009

mysqli_stmt_insert_id

(PHP 5)

mysqli_stmt_insert_id — Get the ID generated from the previous INSERT operation

Descrição

mixed mysqli_stmt_insert_id ( mysqli_stmt $stmt )
Aviso

Esta função não está documentada, somente a lista de argumentos está disponível.



User Contributed Notes
mysqli_stmt_insert_id
php at paulbutler dot org
31-Jul-2007 07:50
This can be used as a property of a statement as well:

<?php

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

echo
$statement->insert_id;

?>

mysqli_stmt_num_rows> <mysqli_stmt_init
Last updated: Mon, 28 Dec 2009