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.
最初のphpページにidの値を次のように保存しました。
<?php ... $_SESSION["UID"] = $row["JS_ID"]; ... ?>
これは2ページ目、
<?php ... session_start(); $uid=$_SESSION["UID"]; ... ?>
値として渡すと機能しますが、プロジェクトを実行しているときに、「未定義のインデックス UID」というエラーが表示されます..それをクリアする方法はありますか?