I have a file called admin.php in which I have a button with the name send. What I want to do is when I click it, to make visible a link on the user's page, user.php. How can I do this?
I have a file with all my functions called functions.php in which I have a function called onSubmit($var); I initialize the variable $var is admin.php with the value $_POST['send'] but when I call the function in the file user.php I have no way of telling him who the variable $var is so I get 'undefined index'.
Is there another way to do this?
EDIT Added code This is admin.php
<input type="button" name="send" value="Submit" /><br/>      
require 'functions.php';  
$posted = $_POST['send'];  
onSubmit($posted);  
This is 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/>  
}  
And this is functions.php
global $isSent;  
function onSubmit($var) {  
if(isset($var)) {  
$isSent = 1;  
}  
}
 
     
    