How To Get Referer From Another Website With Php
- Forums
- PHP
- How To Get Referer From Another Website With Php
This Page Contains information about How To Get Referer From Another Website With Php By wallpaperama in category PHP with 0 Replies. [1229], Last Updated: Sat May 18, 2024
wallpaperama
Mon Dec 22, 2008
0 Comments
1220 Visits
REFERRER:
http://www.wallpaperama.com/forums/how-to-get-referer-from-another-website-with-php-t6906.html
if you have php and you have a php script and you want to know where your visitors are coming from you can actually use to find out who is sending you traffic to your site, you can use it with a database and you can keep track like a counter of where how are your referrers, you will get the domain name and the url of where the hits are coming from with
try it.
<?php
echo $_SERVER[HTTP_REFERER];
?>