I need your help with php code. I usethe switch and $ _GET to jump between the substages but still show me the Undefined index: subject in line 125. Would you help me?
Here is a section of code:
    switch ($_GET['subject'])   //line 125
    {
       case "jednotky":
       include "jednotky.php";
       break;
       case "mapa":
       include "mapa.php";
       break;
       case "druh":
       include "druh.php";
       break;
 
    