Hello there
I was wondering if anyone could help me with this problem
See
I running a site where people can log in, and everytime they log in, a cookie is set, based on their username.
so when a user complete a offer, my website send a link to a Network. (example: www.Network.com/offer=9384736)
When the Network has receive the link with the offer (offer=9384736) , then they will do a postback call to my website.
Example my site is www.mywebsite.com/PB.php/offer=9384736
Then my postback script will get the offer and check for the cookie when a postback call is made from the network to my script.
So what i want is when someone giving me a postback call, a script will check for the cookie ( the user who have complete a offer)
I was just think just to put this in echo $_COOKIE["user"];, but that dident work, because it was the network who called my postback.
So have anyone any idea how i can do this?
Would really appericate if someone could help me out
Thanks!