Hello.. I am trying to make a billing script that will credit a user automatically after they pay their payment from paypal.
Currently I have to manually credit users accounts after they pay which is extremely slow.
My question is this:
Is there some sort of environmental variable that I can use that will verify that a user came from "paypal's" billing page!
Meaning,
if(user is coming from paypals page):
then execute:
else:
echo "sorry Hacker..";
endif;
I realize I will need more verification methods but just wondering if there is something that can verify a person has come from a page that I specify.
I appreciate any help..