我有这个表格,当您单击“新行”时,会弹出另一个带有新输入的字段。我想用这个实现的是一个用户友好的表单,它 FOREACH "New item" ->
("INSERT
INTO menues(
restaurant_id,
title,
subtitle,
name,
ingredients,
price,
category,
upload_date
)
VALUES(
:restaurant_id,
:title,
:subtitle,
:name,
:ingredients,
:price,
:category,
NOW()
)
");
添加多行时,每行应具有相同的值,从表单的上部字段(标题,副标题)+ restaurant_id 和类别BUT名称、成分和价格的值不同。
我可以通过什么方式实现这一目标?
表格:
单击“新行”时>>