Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8698597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:45:48+00:00 2026-06-13T01:45:48+00:00

I am trying to retrieve exams(sessions) depending on the module the teacher has chosen

  • 0

I am trying to retrieve exams(sessions) depending on the module the teacher has chosen from the previous drop down menu.

For Example:

Module selected from drop down: CHI2332 (ModuleId) Advanced Database Systems (ModuleName)

Exam(Session) shown in drop down:

AAA (SessionId) 24-04-2012 (SessionDate) 11:00:00 (Session Time)
ARF (SessionId) 13-06-2012 (SessionDate) 14:00:00 (Session Time)
EFT (SessionId) 10-09-2012 (SessionDate) 09:00:00 (Session Time)

It should display the exams above in the drop down menu as these exams match the moduleId chosen from the module dropdown menu and the TeacherId for these exams belong to the Teacher Username logged into to this page.

The problem is that in the Exam drop down menu, it cannot seem to find any exams even though the modules are legitimate for those exams and hence it should display those exams in the drop down menu.

It just outputs this error below in its place:

Sessions: Notice: Undefined variable: sessionHTML in /.../ on line 178

How can I get the exams to appear in the drop down menu when it should do?

Below are the database tables:

Session Table:

SessionId SessionDate SessionTime ModuleId  
AAA       24-04-2012  11:00:00    CHI2332 
ARF       13-06-2012  14:00:00    CHI2332 
EFT       10-09-2012  09:00:00    CHI2332 

Module Table:

ModuleId  ModuleName
CHI2332   Advanced Database Systems

Below is the php/mysqli code:

<?php

         // connect to the database
 include('connect.php');

  /* check connection */
  if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    die();
  }

   $courseid = (isset($_POST['courseid'])) ? $_POST['courseid'] : '';

   ?>

       <h1>DELETING AN ASSESSMENT</h1>

        <form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
         <p>Course ID: <input type="text" name="courseid" /><input id="courseSubmit" type="submit" value="Submit" name="submit" /></p>      
        </form>


        <?php
if (isset($_POST['submit'])) {

        $query = "
                 SELECT cm.CourseId, cm.ModuleId, 
                 c.CourseName,
                 m.ModuleName
                 FROM Course c
                 INNER JOIN Course_Module cm ON c.CourseId = cm.CourseId
                 JOIN Module m ON cm.ModuleId = m.ModuleId
                 WHERE
                 (c.CourseId = ?)
                 ORDER BY c.CourseName, m.ModuleId
                ";

    $qrystmt=$mysqli->prepare($query);
    // You only need to call bind_param once
    $qrystmt->bind_param("s",$courseid);
    // get result and assign variables (prefix with db)

    $qrystmt->execute(); 

    $qrystmt->bind_result($dbCourseId,$dbModuleId,$dbCourseName,$dbModuleName);

     $qrystmt->store_result();

    $num = $qrystmt->num_rows();

    if($num ==0){
        echo "<p>Sorry, No Course was found with this Course ID '$courseid'</p>";
    } else { 

        $dataArray = array();

 while ( $qrystmt->fetch() ) { 
          // data array
          $dataArray[$dbCourseId]['CourseName'] = $dbCourseName; 
          $dataArray[$dbCourseId]['Modules'][$dbModuleId]['ModuleName'] = $dbModuleName; 
           // session data
          $_SESSION['idcourse'] = $dbCourseId;
          $_SESSION['namecourse'] = $dbCourseName;

    }

     foreach ($dataArray as $courseId => $courseData) {

          $output = ""; 

          $output .= "<p><strong>Course:</strong> " . $courseId .  " - "  . $courseData['CourseName'] . "</p>";

       $moduleHTML = ""; 
       $moduleHTML .= '<select name="module" id="modulesDrop">'.PHP_EOL;
       $moduleHTML .= '<option value="">Please Select</option>'.PHP_EOL;      
            foreach ($courseData['Modules'] as $moduleId => $moduleData) {        

            $moduleHTML .= "<option value='$moduleId'>" . $moduleId . " - " . $moduleData['ModuleName'] ."</option>".PHP_EOL;        
  } 
            }
            $moduleHTML .= '</select>';

      echo $output;

        }


        ?>

         <form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
         <p>Module: <?php echo $moduleHTML; ?><input id="moduleSubmit" type="submit" value="Submit" name="modulesubmit" /></p>      
        </form> 



        <?php

    }

 if (isset($_POST['modulesubmit'])) {

     var_dump($_POST['modulesDrop']);

            $sessionquery = "
                 SELECT SessionId, SessionDate, SessionTime, ModuleId
                 FROM Session
                 WHERE
                 (ModuleId = ?)
                 ORDER BY SessionDate, SessionTime 
                ";

    $sessionqrystmt=$mysqli->prepare($sessionquery);
    // You only need to call bind_param once
    $sessionqrystmt->bind_param("s",$_POST['modulesDrop']);
    // get result and assign variables (prefix with db)

    $sessionqrystmt->execute(); 

    $sessionqrystmt->bind_result($dbSessionId,$dbSessionDate,$dbSessionTime, $dbModuleId);

     $sessionqrystmt->store_result();

    $sessionnum = $sessionqrystmt->num_rows();   

        $dataArraySession = array();

 while ( $sessionqrystmt->fetch() ) { 

     $dataArraySession[$dbModuleId]['Sessions'][$dbSessionId]['SessionDate'] = $dbSesisonDate['SessionTime'] = $dbSessionTime; 

    }

    foreach ($dataArraySession as $sessionId => $sessionData) {

       $sessionHTML = ""; 
       $sessionHTML .= '<select name="session" id="sessionsDrop">'.PHP_EOL;
       $sessionHTML .= '<option value="">Please Select</option>'.PHP_EOL;           
       $sessionHTML .= "<option value='$sessionId'>" . $sessionId . " - " . $sessionData['SessionDate']. " - " . $sessionData['SessionTime'] ."</option>".PHP_EOL;        
       $sessionHTML .= '</select>';
            }


     if ($sessionnum > 0) {

 ?>

         <form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
         <p>Sessions: <?php echo $sessionHTML; ?><input id="sessionSubmit" type="submit" value="Submit" name="sesionsubmit" /></p>      
        </form>       

<?php

    }

    else {
   echo "<p>Sorry, You have No Sessions under this Module</p>";
}


}


        ?>

Link to application is here: Application

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T01:45:50+00:00Added an answer on June 13, 2026 at 1:45 am

    I see a typo here (line: 111):

    $dataArraySession[$dbSessionId]['Sessions']['SessionDate'] = $dbSesisonDate['SessionTime'] = $dbSesisonTime;

    You binded parameter is called $dbSessionTime and you’re assigning $dbSesisonTime to your $dataArraySession array. This would cause $dataArraySession not to filled up by any value in your while loop in line 109. Subsequently the foreach loop in line 115 will never be executed and because $sessionHTML is defined inside this loop, will be undefined later on when you use it in line 131

    PS: The provided link for your application requires authentication to proceed.

    EDIT to provide a code sample in case no data exist for a particular courseId:

    Wrap lines 130-132 inside an if statement in order to be sure that the drop-down will be displayed only if some results are found

    if ($sessionnum > 0) {
       // display your form
    }
    else {
       echo "No results found!";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying retrieve user name from the code through graph api, the below
Iam trying to retrieve data from mysql database into stylesheet.php but it is not
Hi I am trying to retrieve values from database. I have a row which
I am trying to retrieve RSS feed using php. The xml has many different
I am trying to retrieve a column from another related table, and display that
I'm trying to retrieve product information from magento by calling its web service using
I'm trying to retrieve the attribute value from an xsl:param and use it in
I'm trying to retrieve records from the mySQL-database but nothing gets selected. I'm using
I am trying to retrieve the value of Location from the response I get
When trying to retrieve a massive folder path from an outlook mailbox (no 255

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.