我正在使用WordPress和XAMPP。我正在尝试使用mysqli_fetch_row()
函数从名为ltport_posts的表中从名为post_title的列中获取帖子标题。与数据库的连接工作得很好。但是,帖子标题似乎没有写在新闻自动收报机中。现在我知道$row
变量是一个枚举数组,所以我们应该写入偏移数来访问该列。应该注意,while循环正在工作,因为我在ltport_posts中有四行,并且生成了四个<div>
(浏览器的inspect元素向我显示)。但整个标签都是空的:
<div class="ticker-wrap">
<div class="ticker">
<div class="ticker__item"> </div>
<div class="ticker__item"> </div>
<div class="ticker__item"> </div>
<div class="ticker__item"> </div>
</div>
</div>
这是php / HTML代码:
<div class="ticker">
<?php $query="SELECT post_title from ltport_posts";
if($result=mysqli_query($conn,$query))
{
while($row=mysqli_fetch_row($result))
{?>
<div class="ticker__item"><?php printf("%s", $row[5]); ?> </div>
<?php }
mysqli_free_result($result);
}
mysqli_close($conn);?>
</div>
答案 0 :(得分:3)
mysqli_result :: fetch_row - mysqli_fetch_row - 获取结果行 枚举数组
您的查询是
$query="SELECT post_title from ltport_posts";
您只需从查询中提取one column
即可。因此,您将只获得$row[0]
。它的索引从0开始
while($row=mysqli_fetch_row($result))
{?>
<div class="ticker__item"><?php printf("%s", $row[0]); ?> </div>
<?php }
用于获取多列
$query = "SELECT column1, column2,column3,column4 FROM City ORDER by ID DESC";
if ($result = mysqli_query($link, $query)) {
while ($row = mysqli_fetch_row($result)) {
printf ("%s (%s)\n", $row[0], $row[1],$row[3], $row[4]);
}
}
答案 1 :(得分:0)
您可以执行以下操作:
// Prepare the query
$stmt = "select column FROM table";
// Execute it...
$result = mysqli_query($stmt);
// Fetch Results
$row = mysqli_fetch_assoc($result);
// Output single column
echo $row['column'];
当然,您也可以循环使用多个结果。 mysqli_fetch_assoc将返回一个数组,其中键是列名。