Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

How to Display Ip , Browser and refferer info. of visitors ?

4 like 0 dislike
How to  Display Ip , Browser and refferer info. of  visitors ?
asked 1 year ago by BloggeR (179,550 points)

1 Answer

0 like 0 dislike
<?php
function checkvar($var){
return (!empty($var))?$var:"Unknown";
}
echo "<p>Referrer: " . checkvar($_SERVER['HTTP_REFERER']) . "</p>";
echo "<p>IP Address: " . checkvar($_SERVER['REMOTE_ADDR']) . "</p>";
echo "<p>Browser: " . checkvar($_SERVER['HTTP_USER_AGENT']) . "</p>";

?>

I think it is help full .
answered 1 year ago by Jarrod Larkin (21,530 points) edited 1 year ago by Jarrod Larkin

Related questions

11 like 0 dislike
1 answer
0 like 0 dislike
0 answers
15 like 0 dislike
1 answer
asked 1 year ago by digita-book.com (9,700 points)
3 like 0 dislike
1 answer
10 like 0 dislike
1 answer
asked 1 year ago by webmaster (25,340 points)