I want to do something like this:
But it doesn't seems to be working, the purpose is to show ads, only to a specific group of people and turn of ads for others.
Please help
Code:
<?php
$ipaddress = $_SERVER["REMOTE_ADDR"];
$content = file_get_contents('adfly.php');
if ($ipaddress=='14.98.14.230')
{
echo $content;
}
?>
But it doesn't seems to be working, the purpose is to show ads, only to a specific group of people and turn of ads for others.
Please help