$nowtime=date("Y-m-d "); //設定代表目前時間的變數 session_start(); //啟動Session的使用 if(!isset($HTTP_SESSION_VARS['Counter'])){ //檢查Session值是否存在 mysql_select_db($database_shintools, $shintools);//連結資料庫 $userIP=$HTTP_SERVER_VARS['REMOTE_ADDR']; //收集瀏覽者的IP $insertshintools="INSERT INTO webcount (count_ip,count_time) VALUES ( '$userIP', '$nowtime')"; //新增資料的SQL字串 mysql_query($insertshintools,$shintools); //執行webcount資料庫的新增 $HTTP_SESSION_VARS['Counter'] = 1; //設定Session值 } ?>