重複の可能性:
PHP: テーブルの最後に挿入された ID を取得する方法は?
フォームを作成し、2 つのテーブルにデータを書き込みたい。
$sql = "INSERT INTO ma_forum (notcat_id, usr_id, not_titulo, not_status, not_tags, not_data, not_comentarios, not_resumo, not_texto)
VALUES('$categoria', '".$_SESSION[usr_name]."', '$titulo', '$status', '$tags', '".time()."', '$comentarios', '$resumo', '$texto')";
$res = mysql_query($sql) or die(mysql_error());
$sql_or = "INSERT INTO ma_forum_comentarios (comnot_habbo, comnot_data, comnot_status) VALUES('$_SESSION[usr_name]', '".time()."', '$status_comnot')";
$res = mysql_query($sql_or) or die(mysql_error());
ただし、最初のテーブルでは、ID が自動的に auto_increment に書き込まれます。しかし、最初のテーブルと別の列の ID を入力したいと思います。誰でも方法を知っていますか?