コードが投稿されました~~~~~~~~~ 私がどこで間違っていたのか見つけていただければ幸いです。ありがとうございます
基本的な投稿
index.php
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php session_start(); session_unset(); session_destroy(); session_register("pass"); $password=111; $HTTP_SESSION_VARS["pass"]=$password; echo $HTTP_SESSION_VARS["pass"];?> <a href="session.php"> 请点击第二页面</a>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php session_start(); $i=$_SESSION['pass']; if(isset($i)) { echo "成功"; echo $i; } else { echo "失败"; } ?>