<?php
        $f = fopen("https://stonybrook.edu/__admin-units/commencement/data/commencement_data_2026_05_11.csv", "r");
        echo "<section class='graduates' id='graduates'>";
        $commsgrds = "";
        $comjrnlgrads = "";
        $masscommgrads = "";
        while (($line = fgetcsv($f)) !== false) {
            $fn = $line[1];
            $ln = $line[3];
            $pac = $line[6];
            $plandesc = $line[9];
            $honorestimate = $line[5];
            $degreelevel = $line[10];

            if ($pac == "JRNL") {
                if ($degreelevel == "BA" ||  $degreelevel == "BS" ||  $degreelevel == "BE" || $degreelevel == "BFA") {
                    $comjrnlgrads .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $comjrnlgrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $comjrnlgrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $comjrnlgrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $comjrnlgrads .= "</p></div>";
                    }
                }
            }

            if ($plandesc == "Mass Communication") {
                if ($degreelevel == "BA" ||  $degreelevel == "BS" ||  $degreelevel == "BE" || $degreelevel == "BFA") {
                    $masscommgrads .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $masscommgrads .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $masscommgrads .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $masscommgrads .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $masscommgrads .= "</p></div>";
                    }
                }
            }
            if ($plandesc == "Communication") {
                if ($degreelevel == "BA" ||  $degreelevel == "BS" ||  $degreelevel == "BE" || $degreelevel == "BFA") {
                    $commsgrds .= "<div class='grad'><p>" . $fn . " " . $ln;
                    if ($honorestimate != '') {
                        if ($honorestimate == "MAGNA") {
                            $commsgrds .= "<span class='honorestimate m-c'>M</span></p></div>";
                        }
                        if ($honorestimate == "SUMMA") {
                            $commsgrds .= "<span class='honorestimate s-c'>S</span></p></div>";
                        }
                        if ($honorestimate == "LAUDE") {
                            $commsgrds .= "<span class='honorestimate l-c'>L</span></p></div>";
                        }
                    } else {
                        $commsgrds .= "</p></div>";
                    }
                }
            }
        }
        echo "<section class='gradsection'><h4>Communication</h4>" . $commsgrds . "</section>";
        echo "<section class='gradsection'><h4>Journalism</h4>" . $comjrnlgrads . "</section>";
        echo "<section class='gradsection'><h4>Mass Communication</h4>" . $masscommgrads . "</section>";
        echo "</section>";
        fclose($f);
        ?>