errorInfo(); -6ren">
gpt4 book ai didi

php - 否则如果不在 php 中工作

转载 作者:行者123 更新时间:2023-11-30 23:56:49 24 4
gpt4 key购买 nike

这是我的代码

          <?php
try
{
$stmt = $conn->prepare("SELECT * FROM registration");
$stmt->errorInfo();
$stmt->execute();

while ($row = $stmt->fetch(PDO::FETCH_ASSOC))
{
echo "<tr>";
echo "<td>". $row['Autoid'] ."</td>";
echo "<td>". $row['Name'] ."</td>";
if($_SESSION['sesuname'])
{
echo "<td>Its You ". $_SESSION['sesuname'] ."</td>";
}
else if(!$_SESSION['sesuname'])
{
echo '<td>Follow</td>';
}
echo "</tr>";
}
} catch (PDOException $e) {
'Database Error : ' .$e->getMessage();
}
?>

我试图在最终 td 中显示关注选项和登录用户名。但是,此编码始终在所有行中显示登录用户名。我不知道我哪里弄错了?

最佳答案

我猜你的情况应该是,

if($_SESSION['sesuname'] == $row['Name'])
{
echo "<td>Its You ". $_SESSION['sesuname'] ."</td>";
}
else
{
echo '<td>Follow</td>';
}

关于php - 否则如果不在 php 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22301706/

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