Greetings,
Is there any script that keep track users referral and set cookie on users referred so whenever they leave site and come back, it still will be count as referred by person..
thanks.
Greetings,
Is there any script that keep track users referral and set cookie on users referred so whenever they leave site and come back, it still will be count as referred by person..
thanks.
//To set the cookie
if($refered)
{
setcookie('sitenameReferal', 'REFERER');
}
//To retrieve it
if($_COOKIE['sitenameReferal'])
{
$referedBy = $_COOKIE['sitenameReferal'];
}
It's simple enough.
fair enough..
thanks for helping..
do you by another hand know any good open source referal script?