Number of sessions started:
$Query = mysql_query ("SELECT DISTINCT(`session_id`) FROM `table_name`;");
$Count = mysql_num_rows ($Query);
echo $Count;
That was just to get me started.
Now...
$Date = mktime (0, 0, 0, date ("d"), date ("m"), date ("Y"));
$Query = mysql_query ("SELECT DISTINCT(`session_id`) FROM `table_name` WHERE `start_time` > 'Date';");
$Count = mysql_num_rows ($Query);
echo $Count;
I think that that should bring back anything where the start_date is 'today' (I think!)
You've got me curious now, what does the bt_connect_id do?
KITTfan2K