I have a separate file where I include variables with thier set value. How can I make these variables global?
Ex. I have the value $myval in the v
$myval
v
Use inside your function :
global $myval;
PHP - Variable scope