0

私は次のフォームを持っています:

<html>
<head>
</head>

<body>
<form method=post action="submit.php">
<!-- 


If the user goes to a different page or refreshes this page it and returns to this page within 2 hours the value that
was originally entered should populate in the respective textbox,radio groups which is not happening...

 -->
    <input type=text value="<?php echo $_SESSION['saveit'][0]; ?>" name="first" />

    <input type=radio value="A" name="acct" <?php echo ($_SESSION['saveit'][1] == A) ? "checked" : "" ?> /> A
    <input type=radio value="B" name="acct" <?php echo ($_SESSION['saveit'][1] == B) ? "checked" : "" ?> /> B

    <input type=radio value="A" name="birt" <?php echo ($_SESSION['saveit'][2] == A) ? "checked" : "" ?> /> A
    <input type=radio value="B" name="birt" <?php echo ($_SESSION['saveit'][2] == B) ? "checked" : "" ?> /> B

    <input type=submit value="submit" />
</form>
<?php
//echo to see what those values are
echo $_SESSION['saveit'][0];
echo "<BR>";
echo $_SESSION['saveit'][1];
echo "<BR>";
echo $_SESSION['saveit'][2];
echo "<BR>"
?>
</body>
</html>

次の PHP ページ:

<?php
session_start();

//Get the value from form
$first = trim(strip_tags(stripslashes($_POST['first'])));
$acct = trim(strip_tags(stripslashes($_POST['acct'])));
$birt = trim(strip_tags(stripslashes($_POST['birt'])));

$f = isset($first) ? $first : null;
$a = isset($acct) ? $acct : null;
$b = isset($birt) ? $birt : null;

$savearray = array($f,$a,$b);

$_SESSION['saveit'] = $savearray;

//save the value in each individual session (Not using it as I need to save multiple values in ONE session)
//$_SESSION['textbox1'] = isset($first) ? $first : null;
//$_SESSION['radiogroup1'] = isset($acct) ? $acct : null;
//$_SESSION['radiogroup2'] = isset($birt) ? $birt : null;

//set the cookie for each session with the value for 2 hours TTL
//CORRECT syntax to save the ONE session with multiple variable into cookie to be used for upto 2 hours MAX.
//setcookie("textbox1", $first, time()+(3600*2));

//echo test to see what the values are
echo $_SESSION['saveit'][0];
echo "<BR>";
echo $_SESSION['saveit'][1];
echo "<BR>";
echo $_SESSION['saveit'][2];
echo "<BR>";

echo "<a href='http://www.interfaithmedical.com/checksite/testFolder/form.php'>GO TO THE FORM PAGE</a>";
?>
  • setcookie()セッション内の各変数を 2 時間だけ保存するために使用しようとしていますが、どうすればそれを達成できますか?
  • FORM ページをリロードすると、セッションを使用して値が自動入力されません。どうすれば修正できますか?
4

1 に答える 1

2

最初のページで session_start() の呼び出しに失敗しました。セッション変数を使用するすべてのページで呼び出す必要があり、何よりも先に呼び出す必要があります。

事実上、フォームを使用してページでセッションを開始したことがないため、設定した値は実際には設定されていません。

于 2013-06-13T20:23:43.977 に答える