欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php里面怎么循环嵌入html元素

程序员文章站 2022-05-27 13:11:10
...

  • 中奖信息



      $sql = "select * from t_activity where MemberID='$memberID'";
      $res = $db->GetData($sql);

      while ($res)
      {
    • 1


    • }
      $obj = mysqli_fetch_object($res);
      ?>





  • 如上面,从数据库取出数据来后,怎么从数据库结果集中循环输出想要的数据在html的li里面?


    回复讨论(解决方案)

    
    
  • 中奖信息

      GetData($sql); while ($obj = mysqli_fetch_object($res)) { ?>
    • 字段 ;?>
  • 
    
  • 中奖信息

      GetData($sql); while ($obj = mysqli_fetch_object($res)) { ?>
    • 字段 ;?>

  • 大神就是大神!膜拜下!

    还有个问题请教:
    $sql = "select count(*) from t_activity where MemberID='$memberID'";
    $res = $db->ExecSql($sql);
    $num = mysqli_num_rows($res);
    问下mysql,怎么统计查询count(*) 的行数,用上面的方法一直不成功!


    
    
  • 中奖信息

      GetData($sql); while ($obj = mysqli_fetch_object($res)) { ?>
    • 字段 ;?>

  • 大神就是大神!膜拜下!

    还有个问题请教:
    $sql = "select count(*) from t_activity where MemberID='$memberID'";
    $res = $db->ExecSql($sql);
    $num = mysqli_num_rows($res);
    问下mysql,怎么统计查询count(*) 的行数,用上面的方法一直不成功!
    $num打印出来是什么?



    
    
  • 中奖信息

      GetData($sql); while ($obj = mysqli_fetch_object($res)) { ?>
    • 字段 ;?>

  • 大神就是大神!膜拜下!

    还有个问题请教:
    $sql = "select count(*) from t_activity where MemberID='$memberID'";
    $res = $db->ExecSql($sql);
    $num = mysqli_num_rows($res);
    问下mysql,怎么统计查询count(*) 的行数,用上面的方法一直不成功!
    $num打印出来是什么?

    打印出来1,但数据库有3条

    打印出来1,但数据库有3条
    把count(*)换成* 就可以了

    或者这样也可以

    $row = mysqli_fetch_row($res);$num = $row[0];


    打印出来1,但数据库有3条
    把count(*)换成* 就可以了

    大神!

    $num = mysqli_fetch_row($res);
    echo $num[0];

    或者
    list($num) = mysqli_fetch_row($res);

    或者
    $num = crrrent(mysqli_fetch_row($res));