OK here's the deal. This code is in the main of a page.
require "Functions/functions.php";
$why = "ME";
getftp($why);
And in Functions/functions.php I have the following.
function getftp($who) {
echo "$who";
exit();
}
Now, why the hell am I getting an error? Says Erro: Call to Undeclared Function...
Any ideas? Thanks in advance.
Marcel.