0

我想回显行数(假设行数= 3)。如果用户单击该数字(我从 while 循环中传递了 1 个参数),则会提醒数据但问题是

  1. 如果我在 while 循环中回显 numrows,则所有行(相关的 3 行数据)都会在 onclick 事件中收到警报,但 numrows 会显示 3 次,如 333。
  2. 如果我在 while 循环之外回显,则显示 num 行,但只有一个结果传递给函数。

我也使用了 count(col),但是这样只检索到一个结果。

任何一次显示行数但将$uid(在while循环中)的所有结果传递给onclick函数的解决方案?请帮助。

  $sql=mysqli_query($this->db->connection,"SELECT * from user_data where  scid='$scid'");
            $num=mysqli_num_rows($sql);

            while($row=mysqli_fetch_array($sql)){
                $uid=$row['uid'];



                ?>


            <span onclick=o4_sameby_scid(<?php echo $uid;  ?>)><?php echo  $num  ?></span>



            <script type="text/javascript">

                function o4_sameby_scid(o4_id) {
                    alert(o4_id);
                }


            </script>



            <?php
            }
4

1 回答 1

1

while我认为您的问题是您在循环中嵌套了错误的代码部分。这种方法怎么样?:

<?php
$sql=mysqli_query($this->db->connection,"SELECT * from user_data where  scid='$scid'");
$num=mysqli_num_rows($sql);

$allvalues = array();

//  Do all looping before any echoing
while($row=mysqli_fetch_array($sql)){
    // add this row's value to an array of all values
    $allvalues[] = $uid=$row['uid'];
}

// implode this array
$valuesascsv = implode(', ', $allvalues);


//  This is echo'd outside of the loop, because we only need to see it one time
echo '<span onclick=o4_sameby_scid("'. $valuesascsv .'")>'. $num .' results found! </span>';
?>

<script type="text/javascript">
    function o4_sameby_scid(o4_id) {
        alert(o4_id);
    }
</script>

这应该输出:

<span onclick=o4_sameby_scid("uid#1, uid#2, uid#3")>3 results found!</span>

<script type="text/javascript">
    function o4_sameby_scid(o4_id) {
        alert(o4_id);
    }
</script>

单击任何行数应提醒所有 UID。

这是您要寻找的行为吗?

于 2012-12-05T23:11:24.593 回答