gpt4 book ai didi

php - mysql如何获取只有一列的值?

转载 作者:行者123 更新时间:2023-11-29 13:05:44 27 4
gpt4 key购买 nike

我有一个信息表,其中仅包含一行网页的设置。

INFO
id
np (number of posts in one page)
ngbp (number of guestbook posts in one page)
title (title (header h1) of the website)
footer (text of the footer(copyright))
lat (latitude for the google maps)
lng (longitude for the google maps)
mail (email of the contact page)

获取帖子数量的最佳方法是什么?我从来不需要只从数据库的一行中获取值。

我一直用这个:

$sql="SELECT np FROM info WHERE id=".$id;
$result=mysql_query($sql);
while ($row = mysql_fetch_assoc($result))
$numberofposts=$row['np'];

我应该将其与 WHERE id=1 一起使用吗?或者获取该列值的最佳方法是什么?

最佳答案

当只返回一行时,不需要循环:

$sql="SELECT np FROM info WHERE id=".$id;
$result=mysql_query($sql);
$row = mysql_fetch_assoc($result);
$numberofposts=$row['np'];

关于php - mysql如何获取只有一列的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22732769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com