Quote:
Originally Posted by movmix
OK. Let's say that i want add MD5 with userid like
register.php?referrerid=1&invite=5808409b7ba1463c0 d518dca3bb31d0e
See, If I want add the hash how can I ?
|
Well, you could include the userid and also a hash to check the validity. Is that what you mean? It probably wouldn't be really great security-wise, but it might be good enough for your purpose. You could do something like make a secret phrase that you define in your code, then to produce the "invite" parameter, make a hash of the phrase with the userid, like
Code:
$referrerid = 10; // userid of referer
$secret = "This is a secret";
$invite = md5($secret . $referrerid);
Then when the link is clicked you can do the same thing (because you'll have the userid in the "referrerid" parameter) and compare them.
With this scheme, an uninvited person trying to register won't know how to create the right hash value to look like they were refered by a certain user, but of course once someone knows one of the hash values, it can be used again and again, which is why the other idea of storing a random value in a db table is better.