Quote:
Originally Posted by V_RocKs
Another great feature:
Cookie the user with a cookie saying which ads they have already received.
Then allow me to popup more than one ad.
How long I want to wait before popping up on an already cookied user in minutes.
|
Another great feature to add:
Would be to disable pop-up from certain domains.
Enable certain pop-ups when it comes from a certain domain.
Code:
<!-- mfunc
$ref=getenv('HTTP_REFERER');
if (strpos($ref,'bing.com')>0)
{
echo 'hello Bing';
}
else if (strpos($ref, 'Google.com')>0)
{
echo "hello Google";
}
else
{
echo "<script src='http://www.yourdomina.com/js/popup.js' type='text/javascript'></script>";
};
-->
<!-- /mfunc -->