在您的程式碼片段中,您嘗試從一個表檢索最後插入的ID 並使用它來插入數據進入另一個。但是,將值指派給 $image 的行不正確。以下是正確檢索最後插入的 ID 的方法:
$image = mysqli_insert_id($mysqli);
$stmt = $mysqli->prepare(" insert into table1 (username, firstname, lastname, image) select ?,?,?,? from table2 t2 where username = ? and t2.id = ? "); $stmt->bind_param('sssss', $username, $fname, $lname, $image, $username, $image); $stmt->execute();
以上是如何檢索最後插入的 ID 來填入另一個表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!