chapterPage.php 356 B

12345678910111213
  1. <main>
  2. <?php
  3. if (isset($_SESSION['chapterPanel']) && isset($_SESSION['subjectPanel'])) {
  4. $chapter = $_SESSION['chapterPanel'];
  5. $subject = $_SESSION['subjectPanel'];
  6. echo "<center><h1>" . $subject . ": " . $chapter . "</div></h1></center>";
  7. } else {
  8. header("location: teacher.php");
  9. }
  10. ?>
  11. </main>