使用 json 中的数据更新 mysql 表

发布于 2024-11-01 16:09:50 字数 604 浏览 0 评论 0原文

我最近问了这个问题。 While 与 foreach 一起循环

我的问题已解决,

   $result = mysql_query("SELECT id FROM people");
    $id = array($row['id']);
    while($row = mysql_fetch_array($result))
    {
       echo $json->$row['id']->person->{'name'}. '<br />';
       echo $json->$row['id']->person->{'age'}. '<br />';

    }

目前此代码仅回显结果放。 我真正想做的是将这个 echo 替换为 mysql 更新查询。 这将更新选择查询中使用的同一表。

这个名为 people 的表有字段 id、name 和age。

如何使用这些结果更新此表?

再次感谢

I recently asked this question. While loop together with foreach

My problem was resolved with this

   $result = mysql_query("SELECT id FROM people");
    $id = array($row['id']);
    while($row = mysql_fetch_array($result))
    {
       echo $json->$row['id']->person->{'name'}. '<br />';
       echo $json->$row['id']->person->{'age'}. '<br />';

    }

Currently this code only echo's the result set.
What I really want to do is replace this echo with mysql update query.
That will update the same table used in the select query.

This table called people has fields id, name and age.

How can I update this table with these results?

Thanks again

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫南 2024-11-08 16:09:50
mysql_query("UPDATE people SET name='".$json->$row['id']->person->{'name'}."' && age='".$json->$row['id']->person->{'age'}."'");

虽然我建议 PDO 而不是 mysql_ 函数

mysql_query("UPDATE people SET name='".$json->$row['id']->person->{'name'}."' && age='".$json->$row['id']->person->{'age'}."'");

Although I would suggest PDO rather than mysql_ functions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文