为了账号安全,请及时绑定邮箱和手机立即绑定

我可以使用什么机制将结果集传输到另一个视图页面?

我可以使用什么机制将结果集传输到另一个视图页面?

PHP
白衣染霜花 2021-05-12 21:30:02
如何将转移$rs到新页面resultdetails.php?processenterpin.phpif (mysqli_num_rows($result) > 0) {    //query to fetch the concerned result    $query = "select * from result_header where RegNo = $regnumber && d_level = $details && d_sem = $d_sem";    $rs = mysqli_query($conn, $query);    //find a way and send rs to a new page then vomit the resultset in that new page.}我知道会议。我想知道是否还有另一种方法。$rs在resultdetails.php中检索并使用while循环将其打印在那里while($row = mysqli_fetch_assoc($rs)){    //}
查看完整描述

2 回答

?
jeck猫

TA贡献1909条经验 获得超7个赞

您可以使用函数将结果一页传递到另一页。


步骤1.创建db.php


      <?php 


      $servername = "localhost";

      $username = "root";

      $password = "root";

      $dbname = "test";


      // Create connection

      $conn = new mysqli($servername, $username, $password,$dbname);


      // Check connection

      if ($conn->connect_error) {

          die("Connection failed: " . $conn->connect_error);

      } 

      //echo "Connected successfully";


      ?>

步骤2.创建processenterpin.php


        <?php


        require_once('db.php');


        function process($conn){

        $sql = "SELECT * FROM result_header";

        $result = $conn->query($sql);


        return   $result;   


        }


        ?>

步骤3.创建resultdetails.php


            <?php 


            require_once('processenterpin.php');


            $result=process($conn);


            if ($result->num_rows > 0) {

                    // output data of each row

                    while($row = $result->fetch_assoc()) {

                        echo "id: " . $row["id"]. " - Name: " . $row["name"]. "<br>";

                    }

                } else {

                        echo "0 results";

                }

            ?>


查看完整回答
反对 回复 2021-05-28
?
元芳怎么了

TA贡献1798条经验 获得超7个赞

您只需要在哪个文件中使用变量声明后添加以下代码即可。


正如@spacePhoenix所说,始终使用准备好的语句。


include('resultdetails.php');


喜欢 :


$rs = "Test variable";


include('resultdetails.php');


现在,在resultdetails.php文件中,可以使用$ rs变量。


查看完整回答
反对 回复 2021-05-28
  • 2 回答
  • 0 关注
  • 161 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信