I have a small problem that I can't find a solution to.
I have a file included that has a few functions in it. But if I try to call those functions in the main php file, it tells me I'm trying to call an undefined function.
Like this.
include("file.php");
asmallfunction();
The function "asmallfunction" is inside of "file.php" but that code gives me an error.
Please help!