Create two input fields then process...
$start_date = $_GET['start_date'];
$end_date = $_GET['end_date'];
$location = $_GET['location'];
// Connect to DB
include('../../db_connect.php');
// Perform Query
$query = "SELECT * ".
"FROM class AS cl ".
"INNER JOIN ".
"course AS c ".
"ON cl.course_ID = c.course_ID ".
"INNER JOIN ".
"location AS l ".
"ON cl.location_ID = l.location_ID ".
"INNER JOIN ".
"instructor AS i ".
"ON cl.instructor_ID = i.instructor_ID ".
"WHERE cl.class_date BETWEEN '$start_date' AND '$end_date' ".
"AND cl.location_ID = '$location' ".
"ORDER BY class_date ".
"DESC";