$data["site-header"] = $site_header;
       
       connect_db();   
+
+      $startdate = exec_query("select min(access_date) sd from access_log");
       
       $cats = exec_query("select mnemo,name,description from rep_cat");
 
       $data["dictionaries"] = Array( "user_id" => $users, "host_id" => $hosts);
       $data["online_refresh"] = $online_refresh;
       $data["online_history"] = $online_history;
+      $data["start_date"] = $startdate[0]["sd"];
 
       break;