下面是我的代码:
index.php 文件
index.php 文件的 javascript
function Result()
{
var marks = 55;
document.getElementById("hdnmarks").innerHTML= marks;
window.location = "results.php";
}
index.php 的 HTML
<input type="hidden" name="hdnmarks" id="hdnmarks">
描述:我有一个带有 url 的网页localhost/index.php
。在 index.php 中,我有一个提交按钮,点击它我调用Result
javascript 方法设置标记 = 55 并将其放入隐藏字段并将我带到results.php
页面。
在results.php
中,我必须在数据库中插入标记值。但是我应该如何访问标记,因为这些标记存储在隐藏字段中index.php
文件的隐藏字段中?
我想在会话中打上标记,但是我应该如何在 javascript 函数中维护 PHP 会话?我的意思是在移动到之前我应该在哪里和什么时候在课程中打分results.php
?