我在页面上有一个由for循环创建的表单。
$scripte = ($_POST["scriptake"]);
$scriptot = ($_POST["scriptot"]);
include 'config.php';
echo '<h2>'.$scripte.' Equipment</h2>';
echo '<h2>Total Hours '.$scriptot.'</h2>';
echo '<table class="table table-responsive">
<tr>
<form action="equiptest.php" method="post">
<th>Script Hour</th>
<th>Equipment Required</th>
<th>Stage</th>
</tr>';
$x = 1;
$p = 1;
$r = 1;
while($x <= $scriptot ) {
echo "<tr>
<td>".$x++."</td>
<td>
<input name='equip[".$r++."]'>
</td>
<td>
<input name='stage[".$p++."]'>
<input name='ohyeah' type='hidden' value= '".$scriptot."'>
</td>
</tr>";
}
echo '<tr>
<td colspan="2">
<input type="submit" class="btn btn-primary">
</td>
</tr>
</form>
</table>';
正如您所看到的,带有输入的表单是使用for循环创建的。表单中的值收集在数组equip []和stage []中。如果有意义的话,有一个指数的计数器。然后将表单提交给以下脚本。
include 'config.php';
$scriptot = ($_POST["ohyeah"]);
$y = 1;
$r= 1;
foreach($_POST['equip'] as $key => $value) {
foreach($_POST['stage'] as $key => $stage) {
$query = $con->stmt_init();
$statement = $con->prepare("INSERT INTO dgam_equip
(equiplist,stage) VALUES (?,?)");
$statement->bind_param('ss',$value,$stage);
$statement->execute();
}
}
echo 'success';
//bind result variables to be printed
$statement->close();
echo '<br><br><br><br><br>';
我试图将数组插入数据库。
ID |装备|舞台
ID装备[]阶段[]
我正在尝试嵌套foreach循环或将数组添加到正确的行中。我可以得到这一行,但数据有很多次。我猜这是因为foreach循环正在执行第二个foreach循环 将此类数据放入数据库的正确方法是什么?我想先设置一个阵列,但我正在努力。
答案 0 :(得分:2)
$length = count($_POST['stage']);
$stages = $_POST['stage'];
$equips = $_POST['equip'];
$stage = '';
$equip = '';
$query = $con->stmt_init();
$statement = $con->prepare( "INSERT INTO dgam_equip (equiplist,stage) VALUES (?,?) ");
$statement->bind_param('ss', $equip, $stage);
for( $i=0; $i < $length; $i++ ) {
$stage = $stages[$i];
$equip = $equips[$i];
if ( ! empty($stage) ) $statement->execute();
}
可以优化它以在一个查询中获取所有值。
答案 1 :(得分:0)
$equipes = $_POST['equip'];
$stages = $_POST['stage'];
$query = $con->stmt_init();
$statement = $con->prepare( "INSERT INTO dgam_equip (equiplist,stage) VALUES (?,?) ");
for ($i = 0, $total = count($equipes); $i < $total; $i = $i + 100) {
$insertEquipe = array_slice($equipes, $i, 100);
$insertStage = array_slice($stages, $i, 100);
$conn->beginTransaction();
foreach ($insertEquipe as $equipe) {
foreach ($insertStage as $stage) {
$stmt->bindValue(1, $equipe);
$stmt->bindValue(2, $stage);
$stmt->execute();
}
}
$conn->commit();
}