如何在数据库中存储动态添加的行的值

时间:2012-09-24 10:57:07

标签: php mysql database forms

我有一个表单,用户可以根据需要添加更多字段......

他可以添加1,2,3 ......行的字段..

我使用的代码就在这里,

<?php
echo '
<form method="post" action="">
   <input type="hidden" name="mod" value="'.$mod.'" />
   <table style="width: 700px">
   <tr>
       <th>Description</th>
       <th>Quantity</th>
       <th>Price</th>
   </tr>';

// Loop to prepare the display of 100 product lines
for ($i=0; $i<100; $i++) {

   if ($text['quantity'][$i] == "") $text['quantity'][$i] = 1;
   if ($text['unit'][$i] == "") $text['unit'][$i] = "0.00";
   // Display only the first line
   if ($nbr_ligne == 0) $nbr_ligne = 1;
   if ($i >= $nbr_ligne) $display = 'style="display:none"';
   echo '
   <tr id="cell'.$i.'" '.$display.'>
       <td>
           <textarea name="text[detail]['.$i.']">'.stripslashes($text['detail'][$i]).'</textarea>
           <br />
           <a href="javascript:void(0)" onclick="javascript:document.getElementById(\'cell'.($i+1).'\').style.display=\'table-row\'; this.style.display=\'none\'">[+]</a>
       </td>
       <td>
           <input name="text[quantity]['.$i.']" id="q'.$i.'" value="" size="4" />
       </td>
       <td>
           <input name="text[unit]['.$i.']" id="u'.$i.'" value="" size="7" /> USD
       </td>
   </tr>';
}

echo '
   </table>
   <input type="submit" name="save" value="Save" />
</form>
';
?>

字段正在成功添加。

现在我想将这些字段的值存储在数据库中。

我用的代码是:

if(isset($_POST['save']))
{
    echo mysql_error($db);


       extract($_POST);
       $insert=mysql_query(" insert into add (description, quantity, price) values ('{$text['detail'][$i]}','{$text['quantity'][$i]}','{$text['unit'][$i]}')") or die("unable to insert"); 
}

但它不起作用。 PLZ帮帮我们。我非常需要它。

2 个答案:

答案 0 :(得分:0)

如果$ i等于添加的行的nr,则需要将mysql查询放在循环中:

if(isset($_POST['save']))
{
for ($e = 1; $e <= $i; $e++) {
$insert=mysql_query(" insert into add (description, quantity, price) values ('".$text['detail'][$e]."','".$text['quantity'][$e]."','".$text['unit'][$e]."')") or die("unable to insert"); 
}
}

答案 1 :(得分:0)

这里的问题是$ i尚未在用于保存到数据库的脚本中初始化。如果数字不存在,您需要在0到100之间循环播放,然后BREAK。您还使用reserved keyword添加。在保留关键字上使用反引号。

extract($_POST);

foreach(range(0,100) as $i){
    if(isset($text['detail'][$i]) && isset(isset($text['quantity'][$i]) && isset(isset($text['unit'][$i])){
         $insert= mysql_query(" INSERT INTO `add` (`description`, `quantity`, `price`) VALUES ('".$text['detail'][$i]."','".$text['quantity'][$i]."','".$text['unit'][$i]."')") or die(mysql_error());
    }
    else{
        break;
    }
}

不太喜欢循环插入的方式,但上面的代码应该可以工作,即使它显然不是最好的解决方案。更好的方法是创建一个插入多行的单个INSERT查询:

INSERT INTO example (name, age)
VALUES   ('John', 24),   ('Katrina', 21),   ('Michael', 22),   ('Hui Ling', 25),   ('Catherine', 29)

如果必须循环执行单独的查询,则应出于性能原因使用预准备语句。

其他问题:

  1. 您可以SQL injection开放。
  2. 您正在使用不再推荐的mysql函数。请改用PDO或mysqli。