如何将MySQLi Query的结果从一个PHP页面传递到另一个PHP页面?

时间:2015-12-31 08:55:30

标签: php mysql

我有Page1.php包含各种功能。变量$response包含来自MySQLi查询的结果 我有另一个页面Page2.php,它可以以非常格式化的方式显示SQL查询的结果 我如何从$response传递Page1.phpPage2.php

我试过以下。

在第1页:

session_start();  
$_SESSION['message'] = $response;  
header("Location:Page2.php");  
die();

在第2页:

 session_start();  
    $response = $_SESSION['message']; 

但是,它没有用。 :(
将这个结果从一个页面传递到另一个页面的任何其他方法也是受欢迎的。!

1 个答案:

答案 0 :(得分:0)

请按照Page1.php

中的清洁方法进行操作
/* seek to row no. 1 */
$response->data_seek(0);

/* fetch row */
$data = $response->fetch_row();

$_SESSION['message'] = $data;

session_write_close();

header("Location:Page2.php");

die();

<强>使page2.php

session_start(); 

$response = $_SESSION['message'];

希望这有帮助。