在 page1.php 中,用户可以输入日期名称并将其存储在名为 days 的会话数组中。
<?
// starting the session
session_start();
if (isset($_POST['submit'])) {
$_SESSION['days'] = $_POST['days'];
}
?>
<strong>Add a day</strong>
<form action="" method"post">
<input type="text" name="days[]"/>
<input type="submit" name="submit" value="Submit!" />
</form>
<p><a href="/test/page2.php">Page 2</a></p>
在 page2.php 中,用户可以检查它输入的日期:
<?php
session_start();
// loop through the session array with foreach
foreach($_SESSION['days'] as $key=>$value)
{
// and print out the values
echo 'The value of $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
}
?>
但我无法使会话连接正确,它只是空白。这是处理数组会话的正确方法吗?