我想将page1.php中的jquery变量传递给page2.php。 为此,我使用隐藏表单输入法。 在page1.php中,
<form method="POST" action="page2.php" id="myform">
<input type="hidden" id="myField" name="myFieldName">
</form>
此输入字段的值来自脚本:
<script>
activeCount = 2; //some value
$("#myField").val(activeCount);
</script>
现在在page2.php,
我无法在page2.php中打印变量。
在page2.php中,我使用以下代码:
<?php
$myfname = $_POST['myFieldName'];
echo $myfname; // I cant get this printed.
?>
请帮忙。 这个问题在某种意义上是不同的,我想将变量从一个php文件传递到另一个,而不是js文件。