我在page1.php上有一个下拉列表
<?php $dbtables = $_COOKIE["notables"];`
if ($dbtables == "41")
echo "option selected = 'true' value = '41'>41</option?>";
else echo "<option value='41'>41</option>"; ?>
if(isset($_POST['Submitbtn'])){$_SESSION["tables"] = $_POST['notables'];
die("<script>location.href = 'page2.php'</script>");
我想使用session向page2.php显示值,但它是空白的。 表格数量:
我已经启动了session_start();在两个页面上。有什么不对吗?