if (!empty($majors)) {
    $majorPrint = "";
    foreach ($majors as $m) {
        $majorDB .= $m . " ";
        $majorPrint .= $m . ", ";
    }
    $majorPrint = substr($majorPrint, 0, -2);
}
//get advisor id
$id = $_SESSION['UserID'];
//make sure app doesn't exist
//insert new app to DB
//print app
foreach ($datetimes as $dt) {
    // Attempt to create appointment
    $created = Appointment::createAppointment($COMMON, $dt, 0, $majorDB, $studentLimit, $location);
    echo date('l, F d, Y g:i A', strtotime($dt)), "<br>Location: ", $location, "<br>Majors included: ", $majorPrint;
    echo "<br>Number of seats: {$studentLimit}";
    if (!$created) {
        // Appointment already exists
        echo "<br><span style='color:red'>!!</span>";
    }
    echo "<br><br>";
}
?>
        <br>
        <form method="link" action="AdminUI.php">
          <input type="submit" name="next" class="button large go" value="Return to Home">
        </form>
      </div>
      <div class="bottom">
        $majorDB .= $m . " ";
        $majorPrint .= $m . ", ";
    }
    $majorPrint = substr($majorPrint, 0, -2);
}
//get advisor id
$id = $_SESSION['UserID'];
$adv = new Advisor($COMMON, $id);
$advID = $adv->getID();
$location = $adv->getMeeting();
//make sure app doesn't exist
//insert new app to DB
//print app
foreach ($datetimes as $dt) {
    // Attempt to create appointment
    $created = Appointment::createAppointment($COMMON, $dt, $advID, $majorDB, 1, $location);
    echo date('l, F d, Y g:i A', strtotime($dt)), "<br>Advisor: ", $adv->getFirstName(), " ", $adv->getLastName(), "<br>Location: ", $location, " <br> Majors: ", $majorPrint;
    if (!$created) {
        // Appointment already exists
        echo "<br><span style='color:red'>!!</span>";
    }
    echo "<br><br>";
}
?>
		<br>
		<form method="link" action="AdminUI.php">
			<input type="submit" name="next" class="button large go" value="Return to Home">
		</form>
	</div>
	<div class="bottom">
		<p><span style="color:red">!!</span> indicates that this appointment already exists. A repeat appointment was not made.</p>