使用 json 中的数据更新 mysql 表
我最近问了这个问题。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我建议 PDO 而不是 mysql_ 函数
Although I would suggest PDO rather than mysql_ functions