///////////////////////////////////////////////////////////////////// COMPTEUR VISITOR $ip = getenv("REMOTE_ADDR"); $file = fopen("View.txt","a"); fwrite($file,$ip." - ".gmdate ("Y-n-d")." @ ".gmdate ("H:i:s")."\n"); ///////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// DISABLE GOOGLE CHROME if ( isset($_SERVER['HTTP_USER_AGENT']) ) { $t_bIsChrome = strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome'); if ( $t_bIsChrome !== false) { echo "Sorry, this website isn't compatible with Google Chrome. Please use another Browser"; exit; } } ///////////////////////////////////////////////////////////////////////////////////////////////// ?>