変数の受け渡しに関して、またはおそらく私のphp構文に関して、私のphpコードの何が問題なのかを理解するのに苦労しています。これは、start_session(); を含む php です。これらは、変数を共有する必要があるページの上部にあります。
<?php
error_reporting(E_ALL ^ E_NOTICE);
session_start();
$CustNum = $_SESSION['CustNum'];
$UserName = $_SESSION['UserName'];
?>
次に、これが本体コードです。
<?php
if($UserName && $UserID)
echo ("Welcome <b>$UserName</b>. <br> <a href='index.php'><b>Log Out</b></a>");
else
echo ("Please log in to access this page.<br><a href='login.php'>Log In Here</a>");
?>
これは、Web ページに出力された結果です。
"$UserName.
Log Out"); else echo ("Please log in to access this page.
Log In Here"); ?> "
誰が問題が何であるか教えてもらえますか。ありがとうございました!