Quick question, I'm using php to mask my affiliate links like this
<?php
header('location:hxxp://www.example.com?affiliatelinkID=12345')
?>
The html file looks like this
<a href="hxxp://www.mysite.com/ads.php"><img src="hxxp://www.cpaclicks.com/imageredirect.asp?a=myafiiliateid" alt="" border="0"></a>
My affiliate id is still on my img link on the html page which anyone can view by going to the page source. Where and how do I hide the image source link? Can I add it to the same php page above? Any help would be awesome, thanks. :bowdown:
<?php
header('location:hxxp://www.example.com?affiliatelinkID=12345')
?>
The html file looks like this
<a href="hxxp://www.mysite.com/ads.php"><img src="hxxp://www.cpaclicks.com/imageredirect.asp?a=myafiiliateid" alt="" border="0"></a>
My affiliate id is still on my img link on the html page which anyone can view by going to the page source. Where and how do I hide the image source link? Can I add it to the same php page above? Any help would be awesome, thanks. :bowdown: