Hello,
I would like to show some HTML code on my page but only if the referring domain is the on I've specified in the php script, in all other cases I just want it to skip the HTML code. Can someone give me the code for this? I am not really familiair with php.
I tried this code but it doesn't work:
<?php
if ($HTTP_REFERER eq "http://www.mysite.com"){
?>
html code here...
<?php
}
?>
Cheers,
Rik.