我是PHP新手,正在努力解决问题。
该表以“链接”和“评级”为列,我从表中随机选择一行。
<?php
$select = mysqli_select_db($conn, "database");
$result2 = mysqli_query($conn, "SELECT * FROM photos ORDER BY rand() LIMIT 1");
?>
如果我添加
while ($row = $result2->fetch_assoc()) { echo $row['rating']; };
直接位于$result2
下方,正确回显。但那不是我想要的地方。我之后有一大堆HTML代码,以及更多的php标签。
它需要放在标题<h1>
标记中,该标记位于上面编写的代码下面的许多行。
<h1> <?php while ($row = $result2->fetch_assoc()) { echo $row['rating']; }; ?> </h1>
h1
标记内没有任何回应。
答案 0 :(得分:1)
你还有其他SQL查询 - 你忘了提及。
将SQL查询的结果保存到变量中,然后只写这个变量。
<?php
$result2 = ...; // SQL query
$row = $result2->fetch_assoc(); // no while loop necessary if you hav ejust one records from database
$rating = $row['rating'];
...
?>
...
<h1><?php echo $rating; ?></h1>