あるページから別のページに投稿されるフォーム値の配列があります。
$_POST['ingredients'];
配列内の項目は の形式で投稿されましたingredients[]
。
すべての値を連結して、データベースの行の 1 つのフィールドに入れるにはどうすればよいですか
mysql コードの例は完璧です。
ありがとう
$ingredient_method = $_POST['conValue'];
$ingredient_type = $_POST['OneWordDescription'];
$ingredient_element = $_POST['ingredients'];
$sql="INSERT INTO tbl_Recipe (recipe_id, ingredient_method, ingredient_type, ingredient_element)
VALUES
('',$_POST[conValue]','$_POST[OneWordDescription]','$_POST[ingredients]')";
if (!mysql_query($sql))
{
die('Error: ' . mysql_error());
}
echo "1 record added";