Để bắt đầu, bạn nên sử dụng mysql_real_escape_string thay vì dấu gạch chéo.
Thứ hai, bạn nên / có thể tạo trước một vòng lặp foreach khác với $ cookNames.
Hoặc bạn có thể làm theo kiểu lambda / đóng cửa.
array_walk($recipeNames, function(&$value) {
$value = mysql_real_escape_string($value);
});
Sau đó, bạn có thể mã hóa các giá trị của mình
mysql_query("INSERT INTO test (recipeName, ingredients, ingredients2, ingredients3, ingredients4, ingredients5, ingredients6, ingredients7, ingredients8, ingredients9) VALUES('".implode('\',\'', $recipeNames)."')") or die (mysql_error());