<?php
//connect db
$edits = $_POST['form'];
for($i=0; $i<count($edits); $i++)
{
//значение формы будет в $edit[$i] и заноси ее в бд
}
Цитата |
посоветуйте альтернативу |
<td> <input type = "text" size="3" maxlenght="15" name = "form[]" value="<? echo "$row[zach]" ?>"> </td>
$edits=$_POST['form'];
echo print_r($edits);
for ($i=0; $i<count($edits); $i++)
{
$result = mysql_query ("INSERT INTO ets_v (id_stud, id_predm, ocenka) VALUES('$row[id]','$id_predm','$edits[$i]')");}