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

        $msgrads = "";
    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 ($degreedesc == "Master of Science") {
            if ($degreelevel == "MS") {
                $msgrads .= "<div class='grad'><p>".$fn." ".$ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $msgrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $msgrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $msgrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
            } else {
                $msgrads .= "</p></div>";
            }
            }
            
        }
    }
    echo "<section class='gradsection'><h4>Master of Science</h4>". $msgrads . "</section>";
    echo "</section>";
    fclose($f);
    ?>