当前位置:Gxlcms > PHP教程 > 循环取值有关问题

循环取值有关问题

时间:2021-07-01 10:21:17 帮助过:28人阅读

循环取值问题
页面123


//从数据库取值后
while($re = mysql_fetch_array()){

如果我数据为1时,我想1变成1

}

出来页面的结果就是123


怎么能实现呢,谢谢了

------解决方案--------------------
这你就用jquery取div中的值,然后跟php获取的值比较,给个变量赋值class类就好了
------解决方案--------------------
$index = 0;
while($re = mysql_fetch_array()){
$index++;
if($index == $re['字段'])
$class = 'class="checkedBtn"';
echo '1';
}

人气教程排行