通过 PHP 显示 MYSQL 结果的值
好吧,这是一个业余问题,但我在显示数据库的值时遇到了最大的困难。我想显示整个“电话”列,所以我的 mysql 查询是这样的:
$result = mysql_query('SELECT phone FROM contactList WHERE phone != 1') or die(mysql_error());
$row = mysql_fetch_array($result)
我的 PHP 脚本是这样的:
while(isset($rows))
{
echo $rows['phone'] . "html break tag";
}
看起来虽然我只得到第一个结果,而不是循环遍历整个列。
我是否需要在循环中增加 ID 并通过 ID 获取值?唯一的问题是我的自动增量 ID 列从 @ 130 开始,并在这里和那里跳过一些数字。
OK, this is an amateur question but I am having the most trouble displaying the values of my database. I want to display the entire 'phone' column so my mysql query is this:
$result = mysql_query('SELECT phone FROM contactList WHERE phone != 1') or die(mysql_error());
$row = mysql_fetch_array($result)
My PHP script is as this:
while(isset($rows))
{
echo $rows['phone'] . "html break tag";
}
It looks like though I'm only getting the first result instead of looping through the entire column.
Do I need to increment the ID in my loop and get value via ID? The only problem with that is my auto-incremental ID column starts @ 130 and skips some numbers here and there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个,
这应该可以帮助您循环遍历整个数组。
try this instead
That should help you looping through the whole array.