douwei1904 2011-07-17 04:59
浏览 75
已采纳

PHP循环中的交替颜色行

How can I have an alternating color rows in my php loop?

$num = mysql_num_rows($qPhysician);

$i=0;

while($i < $num)

{

    echo "<tr>";
    echo "<td>" . mysql_result($qPhysician,$i,"lastName") . "</td>";
    echo "<td>" . mysql_result($qPhysician,$i,"firstName") . "</td>";
    echo "</tr>";

    $i++;

}

I have to omit the "<" and ">" for both "tr" and "td" because it wasn't allowed in this question. :)

thanks!

  • 写回答

5条回答 默认 最新

  • drqn5418 2011-07-17 05:04
    关注

    What do you mean? Are you saying you want to echo it in a table that alternates rows?

    $num = mysql_num_rows($qPhysician);
    $i=0;
    echo "<table>"
    while($i < $num)
    
    {
    if ($i % 2 == 0){
    echo "<tr class='style1'>";
    }
    else{
    echo "<tr class='style2'>";
    }
    echo "<td>" . mysql_result($qPhysician,$i,"lastName") . "</td>";
    
    echo "<td>" . mysql_result($qPhysician,$i,"firstName") . "</td>";
    
    echo "</tr>";
    
    $i++;
    
    }
    echo "</table>";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥50 安装华大九天aether
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证