Post
Topic
Board Micro Earnings
Re: FaucetBOX.com Discussion
by
Salmen
on 22/06/2015, 17:46:57 UTC
I'm not that good with PHP, but I think that
Code:
header('Location: /');
won't end the script. So it will send the coins either way and only redirect to main page after that.
Code:
header('Location: /'); die();
should work though.
Perhaps, though I believe PHP works going downwards. If you put the check above where it sends coins, it shouldn't send them. Using die(); would probably be best to be safe though.
Try with
exit;