我有一个里面有一个循环的表格。这是我的代码:
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
<?php
for ($i = 1; $i <= 2; $i++) {
echo "Numero ";
echo $i;
echo "<input type='text' name='number2[$i]' id='number2{$i}' />";
}
?>
<input type="submit" name="submitbutton" value="Confirm!">
</form>
<?php
print_r( $_POST );
if(!isset($submitbutton)) {
if (isset($_POST['number2']) != "") {
echo "<b>{$_POST['number2']}</b>, !\n";
$nI = $_POST['number2'];
}
}
?>
我得到的输出是:
数组 ( [number2] => 数组 ( [1] => 3 [2] => 4 ) [提交按钮] => 确认!) 数组,!
我想知道如何将号码放入会话中。
例如Session[1]=3, Session[2]=4
我尝试使用数组和 foreach,但总是出错。