我在phpmyadmin中创建了这些表
food -->(id, user_id, name, price, description)
ingredient-->(id, name)
food_ingredient--> (id, food_id, ingredient_name)
我希望food_id
与food.id匹配,与ingredient_name
和ingredient.name
相同
无论如何,我想在用户提供food
,food_ingredient
,food.name
信息的同时将数据插入food.price
和food.description
。
所以我(在完成一些剥离和修剪用户输入之后):
INSERT INTO food
(id, user_id, name, price, description)
VALUES
(NULL,\"$user_id\", \"$name\",\"$price\",\"$food_desc\")"
问题是如何获得food_id
以便我可以运行类似:
INSERT INTO food_ingredient
(id, food_id, ingredient_name)
VALUES
(NULL,\"$food_id\", \"$ingredient_name\")