Since i have two site, i want to show a page if someone comes from one site, but if they come from a different one i want it to show a different look. I tried this code but it doesnt seem to work so well:
<?php
if (stristr($HTTP_REFFERER,"site1.com"))
{
echo "blah!";
}
else
{
echo "blee";
}
?>