$query="SELECT event_id, event_title, event_title_2 ,event_date, event_time, event_content FROM $table WHERE event_date >= NOW() AND event_date <= date_add(NOW(), INTERVAL 7 DAY) ORDER BY event_date ASC $limit";
This doesn't list the event on the current date but starts with events on the following day ie it sees NOW() as tomorrow.