在Mysql里,字段名为 ` 符号,内容为 '或者"
另一个思路你试试:
html:
<input type="text" name="A[]" /><input type="text" name="B[]" />
<input type="hidden" name="ids[]" value="{$id}" />
php:
<?php$a = $_POST['A']
$b = $_POST['B']
$ids = $_POST['ids']
foreach($a as $k => $v) {
$sql = "update abc set a='{$v}', b='{$b[$k]}' where id='{$ids[$k]}'"
mysql_query($sql)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)