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
Same as if you declared the variable in the same file.
function doSomething($arg1, $arg2) { global $var1, $var2; // do stuff here }