I dont think if this is possible but what the heck. i got a sales page.. and at the bottom i have the "buy me" image. the proble is that i want to display different "buy me" links to specific IP addresses. Is this possible? For example.. Everyone goes to my page and everyone sees this link www.mysite.com/buyme.html and one or some specific ips for example : 201.002.002.003 they see this www.mysite.com/notforyourcountry.html got my idea?
nope but you see i dont want to redirect any visitors to any page, i jsut want 2 have 1 page with just 1 link chaning if an specific visitor comes.
So it's just for one specific visitor? Only one ip address? Either way it doesn't matter, it's still easily possible with a bit of geo ip php...
yeah just for one IP. or maybe 2. its for a specific person i dont want them to see what i am selling.
Ok, well if you just want to change the link for one ip... <?php $ip = $_SERVER['REMOTE_ADDR']; if ( $ip == "123.456.78.910" ) { echo "http://linkifbadip.com"; } else { echo "http://everyoneelse.com"; } ?>
Can you link me to your site? It would be something like... <a href="<?php $ip = $_SERVER['REMOTE_ADDR']; if ( $ip == "123.456.78.910" ) { echo "http://linkifbadip.com"; } else { echo "http://everyoneelse.com"; } ?>" target="_self"><img src="image.jpg" alt="whatever" /></a>