gpt4 book ai didi

php - elseif 在 while 子页面

转载 作者:太空宇宙 更新时间:2023-11-03 12:30:28 25 4
gpt4 key购买 nike

我想为每一行创建 elseif ......我不知道该怎么做......试图谷歌(一会儿 elseif)......希望有人能给我一个提示来解决这个问题...

$subgalSql = mysql_query("SELECT * FROM galerieCategories ORDER BY title ASC");
while($subgalData = mysql_fetch_array($subgalSql)){


elseif($_GET[galeriepath] == $subgalData[title]){
?>HTML HERE<?
}


}

我希望有人能看到我在这里想做什么...elseif 将成为子页面...

感谢任何建议:)

最佳答案

“elseif”仅用作辅助“if”语句。

if (condition) {
//if condition is true
} elseif (condition2){
//otherwise, if condition 2 is true
} else {
//all else
}

长话短说:您想要的只是一个“如果”,因为它是第一个(也是唯一一个)条件。

这应该有效:

    $subgalSql = mysql_query("SELECT * FROM galerieCategories ORDER BY title ASC");
while($subgalData = mysql_fetch_array($subgalSql)){
if($_GET[galeriepath] == $subgalData[title]){
?>HTML HERE<?
}
}

关于php - elseif 在 while 子页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15656419/

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