Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次の奇妙な問題に苦しんでいます。
if (isset($_GET["invdata"])) { $_SESSION["invdata"] == "aaa"; print_r($_SESSION); }
print_rにSESSION情報が表示されますが、invdata情報が表示されません。何が問題になる可能性がありますか?
ありがとう!
変更してみてください
$_SESSION["invdata"] == "aaa";
と
$_SESSION["invdata"] = "aaa";
(シングルに注意してください=)
まあ、二重等号は役に立たない!
交換
変数を設定することはできませ==ん。
==