我想圖像與名字相關聯,姓氏......我怎麼能檢索最後羅萬德用它插入到另一個表?我嘗試$image = $mysqli->insert_id;
然後綁定,但它不起作用。有人可以幫我嗎?mysqli的最後插入ID
$image = $mysqli->insert_id;//this should come from table2
$stmt = $mysqli->prepare("
insert into table1 (username, firstname, lastname, image)
select ?,?,?,image from table2 t2 where username = ? and t2.id = ?
");
$stmt->bind_param('sssss', $username, $fname, $lname, $username, $image);
$stmt->execute();
你需要使用'INSERT_ID;'你執行的查詢後插入,如:'如果($ stmt->的execute())$圖像= $ stmt-> INSERT_ID;' –
@IlyaBursov這樣的話怎麼辦綁定't2.id =' – user2926655
需要表達自己的意願更加明確和獨特的方式 –