將影像與使用者資訊關聯
在多個具有相關資訊的表中插入資料時,必須檢索最後一行的ID 以供使用在隨後的表格插入中。要使用 MySQLi 在 PHP 中實現此目的,您可能會遇到 insert_id 屬性的問題。
要解決此問題,您可以使用 MySQL 的 auto_increment 欄位作為 ID 欄位。此欄位將為每個插入的行自動產生唯一的 ID。
建立自動增量欄位後,您可以使用下列程式碼擷取最後插入的 ID:
<?php $last_id = mysqli_insert_id($conn);
將 $conn 替換為您的 MySQLi 連線。
現在,您可以使用$last_id 將圖像插入到另一個table:
<?php $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, $last_id, $username); $stmt->execute();
這會將圖像插入到table1 中,並將其與table2 中的用戶資訊關聯起來。
以上是如何使用 MySQLi 的 `insert_id` 將圖像與使用者資訊相關聯?的詳細內容。更多資訊請關注PHP中文網其他相關文章!