我有一個會話變量'touser',每次刷新頁面時會重置會話變量,但整個會話「user」的會話變量不會重置。會話變量在刷新時重置
<?php
session_start(); require("source/header.php");
require("scripts/connection/signup/db.php");
?>
<?php
session_start();
$touser=$_POST["chats"];
$_SESSION["touser"]=$touser;
echo $_SESSION["touser"];
?>
而問題是......?對不起,你真的不清楚你在問什麼。 – panther
我不想在刷新頁面後重置「touser」變量。 – user3783952