get last inserted row in mysql php code example
Example 1: mysql get last row
SELECT fields FROM table ORDER BY id DESC LIMIT 1;
Example 2: mysql get this inserted id php
$this_id = mysqli_insert_id($db);
SELECT fields FROM table ORDER BY id DESC LIMIT 1;
$this_id = mysqli_insert_id($db);