Hi all,
I have a function A in which I include another file (which contains another function 😎.
func_a.php
function a() {
include("func_b.inc");
b();
}
When I run func_a.php, it does include func_b.inc but instead of running the script, it prints out the codes (ie. b) and return a fatal error - call to undefined function b() in func_a.php...
Anyone has a clue? Thank you! 😕