Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$ip = getenv("REMOTE_ADDR");
$date = date("j M y G:ia");
$page = $_SERVER[PHP_SELF];
$sql = "INSERT INTO hits VALUES('','$ip','$date','$page')";
$result = mysql_query($sql) or die(mysql_error());