php页面 sql修改语句怎么写?

php页面 sql修改语句怎么写?,第1张

你的这一句有错误

$sql        = "UPDATE  `JPNG` SET `ZH_name`='$ming',`ZH_mima`='$mima',`ZH_cid`='$cid' WHERE `ZH_id`= $id"

在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)

    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10813426.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存