السلام عليكم

لدي استفسار عن طريقة الحصول على اخر id في الجدول بدون استخدام insert من قاعدة البيانات

كنت استعمل هذه الطريقة لكنها تضيف بيانات جديدة

$link = mysqli_connect("localhost", $username, $password, $username);

if ($link === false) {
die("ERROR: Could not connect. ".mysqli_connect_error());
}


$sql = "INSERT INTO movies (img_title, img_link, imgid) VALUES ('xx', 'xxx', 'xxxx')";

if (mysqli_query($link, $sql)) {

$last_id = mysqli_insert_id($link);
echo "Records inserted successfully. Last inserted ID is: ".$last_id;
} else {
echo "ERROR: Could not able to execute $sql. ".mysqli_error($link);
}

mysqli_close($link);

شكرا