I've been customising the email registration php, and have come a ways with it. I've added a few more processes to the activation, including setting up a user directory. And it seems to be working.
Now I'd like to return to activate.php a true value for when the dir set up (which is the last process) is successful.
I can't seem to get a var returned though.
So activate.php has:
if(isset($_GET['aid'])) { activate_account($_GET['aid']); }Then in user.inc.php...
function activate_account($aid) {}activates, then
make_user_dir($user_dir);runs
function make_user_dir($user_dir) {}Everything works fine up to this point. Then, in make_user_dir, I put
$var = "successful"; return $var;but I can't figure out how to get activate.php to echo $var
Is the fact that I've jumped from one function to another affecting the return?
Thanks guys
Shaun