"; $host="localhost"; $user="nealc"; $password="Removeme"; $database="wckn_nealc"; $linkID = mysql_connect($host, $user, $password) or die(mysql_error()); $db = mysql_select_db($database, $linkID); echo""; echo "

You can now find out what's going on throughout northern New York State at wckn.com! Our new interactive online community calendar features upcoming activities, events, and entertainment throughout our region.

Submit your event to WCKN:

Hosting or sponsoring an event? In keeping with our mission of striving to be the North Country's premier provider of public service information, WCKN would be happy to promote any worthwhile non-for-profit or charitable venue in St. Lawrence, western Franklin, or northern Jefferson and Lewis Counties. To submit your event for inclusion in both our online and televised community calendars, contact our station general manager, Connor M. Harrison, at harriscm@clarkson.edu or click here to use our online submission form.


List of Upcoming Events:

"; $query = "select nameOfEvent, date, time, location, description, contactName, contactPhone, contactEmail from communityCalendar"; $result = mysql_query($query) or die(mysql_error()); echo "
"; while ($row = mysql_fetch_assoc($result)) { echo "{$row['nameOfEvent']}
{$row['date']}, {$row['time']}, {$row['location']}

{$row['description']}
{$row['contactName']} {$row['phone']} {$row['contactEmail']}

"; } echo "
"; echo "
"; include ("../resources/footer.html"); ?>