我有一个名为 admin.php 的文件,其中有一个名为 send 的按钮。我想要做的是当我单击它时,使用户页面 user.php 上的链接可见。我怎样才能做到这一点?
我有一个文件,其中包含我的所有函数,名为 functions.php,其中有一个名为 onSubmit($var); 的函数。我用值 $_POST['send'] 初始化变量 $var 是 admin.php 但是当我在文件 user.php 中调用函数时,我无法告诉他变量 $var 是谁,所以我得到 'undefined指数'。
还有另一种方法可以做到这一点吗?
编辑添加的代码 这是 admin.php
<input type="button" name="send" value="Submit" /><br/>
require 'functions.php';
$posted = $_POST['send'];
onSubmit($posted);
这是 user.php
require 'functions.php';
onSubmit($var); //here it says undefined index var because it doesn't know who the variable is
if($isSent == 1) {
<a style="visibility:visible;" href="test3.html" id="test3">Test3</a> <br/>
}
这是functions.php
global $isSent;
function onSubmit($var) {
if(isset($var)) {
$isSent = 1;
}
}