<?php
$f = fopen("https://stonybrook.edu/__admin-units/commencement/data/commencement_data_2026_05_11.csv", "r");
    echo "<section class='graduates' id='graduates'>";

        $mfagrads = "";
		$tvwritinggrads = "";
		$creativewritinglitgrads = "";
		$filmgrads="";

    while (($line = fgetcsv($f)) !== false) {
        $fn = $line[1];
        $ln = $line[3];
        $pac = $line[6];
        $plandesc = $line[9];
        $honorestimate = $line[5];
        $degreelevel = $line[10];
        $degreedesc = $line[11];
        
if ($plandesc == "Television Writing") {
                if ($degreelevel == "MFA") {
                    $tvwritinggrads .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $tvwritinggrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $tvwritinggrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $tvwritinggrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $tvwritinggrads .= "</p></div>";
                    }
                }
            }
if ($plandesc == "Creative Writing and Literature") {
                if ($degreelevel == "MFA") {
                    $creativewritinglitgrads .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $creativewritinglitgrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $creativewritinglitgrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $creativewritinglitgrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $creativewritinglitgrads .= "</p></div>";
                    }
                }
            }
if ($plandesc == "Film") {
                if ($degreelevel == "MFA") {
                    $filmgrads .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $filmgrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $filmgrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $filmgrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $filmgrads .= "</p></div>";
                    }
                }
            }
	}
    echo "<section class='gradsection'><h4>Creative Writing and Literature</h4>". $creativewritinglitgrads . "</section>";
 echo "<section class='gradsection'><h4>Television Writing</h4>". $tvwritinggrads . "</section>";
 echo "<section class='gradsection'><h4>Film</h4>". $filmgrads . "</section>";
    echo "</section>";
    fclose($f);
    ?>