PHP 操作データベースの問題
問題:
2 つのテーブルがあります: table1、table2
table1 のフィールドは次のとおりです:
id id title content
table2 のフィールドは次のとおりです:
id cid user
ここで、CID は table1 の ID です
table1 は、insert into によってデータを生成した後、table1 の ID を table2 にも書き込みます。これを実現するにはどうすればよいですか?
は次のとおりです。
table1:
id title content
1 test content
2 test2 content 2
table2:
id cid user
1 1 1 ユーザー
2 2 2 ユーザー 2
ありがとう~~
-----解決策----- ----- ----------
mysql_insert_id();
前の INSERT 操作によって生成された ID を取得し、それを table2 に挿入します