is there anyway to use php to determine where a user comes from when arriving at the homepage or any page of your site? (ie, yahoo, banner link, bookmark, randomly typed in, etc..) blue
Use the HTTP/1.1 headers only works with Apache module:
$headers = getallheaders(); echo "User from ".$headers["Referer"];
Hope this helps 🙂
or you use the PHP Global Variable $HTTP_REFERER ... don't know if this only works with HTTP/1.1 ... but it works most of the time for me :-))
cya Rob