gpt4 book ai didi

php - MySQL查询拉一行并显示结果的第一个字母

转载 作者:行者123 更新时间:2023-11-29 04:24:11 25 4
gpt4 key购买 nike

我想我需要更新基本的 PHP/MYSQL,因为没有任何东西适合我。

我的 MYSQL 表有两行信息。

 $results = mysql_query("SELECT Name, Description FROM products");
$results = mysql_fetch_assoc($results);
print_r($results);

打印时,我得到的只是一个结果。 Array ( [Name] => Banana [Description] => It's a lovely banana )。表中肯定有两个结果。为什么会这样?

其次,这个循环只返回每个结果的第一个字母,我也不知道为什么!

foreach($results as $res) {
?>
Name : <?php echo $res['Name']; ?><br />
Description : <?php echo $res['Description']; ?><br />

<?php } ?>

今天我的大脑严重困惑:(

最佳答案

while($res = mysql_fetch_assoc($results)){
?>
Name : <?php echo $res['Name']; ?><br />
Description : <?php echo $res['Description']; ?><br />

<?php } ?>

关于php - MySQL查询拉一行并显示结果的第一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15230235/

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