INSERT несколько записей в MySQL с одной формой PHP

INSERT несколько записей в MySQL с одной формой PHP.

Простая форма

<form action="process.php" method="post"> <p><label>Beamline ID</label> <input type="text" name="bline_id[][bline_id]" /> <label>Flow</label> <input type="text" name="flow[][flow]" /> </p> <p><label>Beamline ID</label> <input type="text" name="bline_id[][bline_id]" /> <label>Flow</label> <input type="text" name="flow[][flow]" /> </p> <p><label>Beamline ID</label> <input type="text" name="bline_id[][bline_id]" /> <label>Flow</label> <input type="text" name="flow[][flow]" /> </p> <p><label>Beamline ID</label> <input type="text" name="bline_id[][bline_id]" /> <label>Flow</label> <input type="text" name="flow[][flow]" /> </p> <p><label>Beamline ID</label> <input type="text" name="bline_id[][bline_id]" /> <label>Flow</label> <input type="text" name="flow[][flow]" /> </p> <input name="Submit" type="submit" /> </form> 

//process.php

 <?php // connect to the database include('connect-db.php'); $cnt = count($_POST['bline_id']); $cnt2 = count($_POST['flow']); if ($cnt > 0 && $cnt == $cnt2) { $insertArr = array(); for ($i=0; $i<$cnt; $i++) { $insertArr[] = "('" . mysql_real_escape_string($_POST['bline_id'][$i]) . "', '" . mysql_real_escape_string($_POST['flow'][$i]) . "')"; } $query = "INSERT INTO bltest (bline_id, flow) VALUES " . implode(", ", $insertArr); mysql_query($query) or trigger_error("Insert failed: " . mysql_error()); } echo("<pre>\n"); print_r($_POST); echo("</pre>\n"); mysql_close($connection); ?> в <?php // connect to the database include('connect-db.php'); $cnt = count($_POST['bline_id']); $cnt2 = count($_POST['flow']); if ($cnt > 0 && $cnt == $cnt2) { $insertArr = array(); for ($i=0; $i<$cnt; $i++) { $insertArr[] = "('" . mysql_real_escape_string($_POST['bline_id'][$i]) . "', '" . mysql_real_escape_string($_POST['flow'][$i]) . "')"; } $query = "INSERT INTO bltest (bline_id, flow) VALUES " . implode(", ", $insertArr); mysql_query($query) or trigger_error("Insert failed: " . mysql_error()); } echo("<pre>\n"); print_r($_POST); echo("</pre>\n"); mysql_close($connection); ?> 

Результаты массива

  Array ( [bline_id] => Array ( [0] => Array ( [bline_id] => 1 ) [1] => Array ( [bline_id] => 2 ) [2] => Array ( [bline_id] => 3 ) [3] => Array ( [bline_id] => 4 ) [4] => Array ( [bline_id] => 5 ) ) [flow] => Array ( [0] => Array ( [flow] => 11 ) [1] => Array ( [flow] => 22 ) [2] => Array ( [flow] => 33 ) [3] => Array ( [flow] => 44 ) [4] => Array ( [flow] => 55 ) ) [Submit] => Submit Query ) 

результат INSERT, конечно, 5 строк, но данные не вставлены для $ bline_id или $ flow. Но, глядя на массив, это правильные данные.