How do you store mySQLi array in PHP session? I used while loop to render out the array but how should I assign each of them to the session?
Here is my attempt:
while($row = mysqli_fetch_array($sqlCommand)){
$id = $row["id"];
$product_name = $row["product_name"];
$price = $row["price"];
$all_list .= "id= $id, product name = $product_name, price = $price
";
}
/*only work if only LIMIT 1*/
//$_SESSION["id"] = $id;
//$_SESSION["product_name"] = $product_name;
//$_SESSION["price"] = $price;
I have also tried to assign session variable to each of the array however it only works if the result is limited to one. In my case the result will be at least one or more. How can I do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…