I look in my MySQL and i hav INSERT relly mouch data ind then and now i whot to convert timestamp to date ( yyyy-mm-dd ) soe i can get this comment to work
$GetBrowser = mysql_query("SELECT countrynick, DATE(runtime), COUNT(DISTINCT ipaddress) AS Count FROM besog_log WHERE kundeid = '$UserID' GROUP BY countrynick, DATE(runtime) ORDER BY Count DESC");
SELECT countrynick, COUNT(DISTINCT ipadresse) AS Count FROM besog_log WHERE kundeid = '$UserID' GROUP BY countrynick, DATE_FORMAT(runtime, '%Y-%m-%d') ORDER BY Count DESC
SELECT countrynick, COUNT(DISTINCT ipadresse) AS Count, FROM_UNIXTIME(runtime, '%Y-%m-%d') AS DateNow FROM besog_log WHERE kundeid = '6' GROUP BY countrynick, FROM_UNIXTIME(runtime, '%Y-%m-%d') ORDER BY Count DESC