以下のコードでセッションを使用して、前のページから現在のページに変数を渡します。
前のページ :
<?php
session_start();
$job_remarks = 'ASAS';
$_SESSION["ref"] = $job_remarks ;
echo $_SESSION["ref"] ;
..
<form id="employee" name="employee" method="post" action="nextapge.php">
<input type="submit" value="Apply Now">
現在のページ: (nextpage.php)
<?php
session_start();
$refernce = isset($_POST['ref']) ? $_POST['ref'] : $_SESSION["ref"];
$refernce = $_SESSION["ref"];
echo $refernce;
これは、locahost では機能しますが、Web ホストでは機能しません。Web ホストのサーバーで失敗する原因は何ですか?