I am trying to assess the value of both submit buttons outside the else block, because this script is included in another script.
script 1:
else{
$color = "blue";
echo"<table><td><input type='submit' name='delete' value='Delete'></td>
<td><input type='submit' name='send' value='Send'></td></tr>
</table>";
global $delete;
global $send;
}
script 2:
include("script1");
if($delete){
echo "$color"
}
I used the global variable. but the $delete value still doesn't pass to the other script
What should I do??
Please help
Thanks in advance