具有多个数组的 Foreach 循环
这就是我想要的:
foreach($_POST['something'] as $something){
foreach($_POST['example'] as $example){
$query = mysql_query("INSERT INTO table (row, row2) VALUES ('{$something}','{$example}')");
}
}
$_POST['something']
和 $_POST['example']
是来自输入的数组
$_POST['something']
and $_POST['example']
are arrays from an input with
name="something[]"
和 name="example[]"
.
问题:
通过这种方式,我会将数据两次发送到数据库.所以我需要一个解决方案,我可以循环遍历 2 个数组,而无需两次发送数据.
In this way I will send the data twice to database. So I need a solution where I can loop trough 2 arrays without seding the data twice.
编辑
- 两个数组将始终具有相同的大小
- 在 mysql_query 中,我将有其他元素,而不仅仅是 row、row2,这些元素将是静态的,没有任何数组.
推荐答案
你的意思是这样的:
foreach($_POST['something'] as $key => $something) {
$example = $_POST['example'][$key];
$query = mysql_query("INSERT INTO table (row, row2) VALUES ('{$something}','{$example}')");
}
相关文章