I have:
include ('functions.php'); check_blocked(); echo $blocked;
in functions.php, check_blocked (); exist. Inside check_blocked, I got:
global $blocked; $blocked = '1234';
I want echo $ to block the variable inside check_blocked ().
It does not work, there is no way out.
This is an example of my original problem, so please do not say that I could just get an echo inside the function, as I cannot have in my source code.
Karem source share