usefulFunctions.php 437 B

123456789101112131415161718192021
  1. <?php
  2. function setChapters()
  3. {
  4. if (!isset($_SESSION['chapterPanel'])) {
  5. if (isset($_POST['chapterPanel'])) {
  6. $chapter = $_POST['chapterPanel'];
  7. $_SESSION['chapterPanel'] = $chapter;
  8. }
  9. }
  10. }
  11. function setSubjects()
  12. {
  13. if (!isset($_SESSION['subjectPanel'])) {
  14. if (isset($_POST['subjectPanel'])) {
  15. $chapter = $_POST['subjectPanel'];
  16. $_SESSION['subjectPanel'] = $chapter;
  17. }
  18. }
  19. }