I received the following error message when I tried to show the content in my dashboard. How may I fix it?
the code is
       <?php foreach ($sections as $row) : ?>
            <tr>
                <td><?php echo $row['ht_id'] ?></td>
                <td><?php echo $row['Sections'] ?></td>
                <td><?php echo $row['ht_descr'] ?></td>
                <td>
                <a href="edit_section.php?section_id=<?php echo $row['ht_id'] ?>&operation=edit" class="btn btn-primary" style="margin-right: 8px;"><span class="glyphicon glyphicon-edit"></span>
                <a href=""  class="btn btn-danger delete_btn" data-toggle="modal" data-target="#confirm-delete-<?php echo $row['ht_id'] ?>" style="margin-right: 8px;"><span class="glyphicon glyphicon-trash"></span></td>
            </tr>
      <?php endforeach;?>
the ht_id and the ht_descr are good there is nothing wrong with it only the Sections row give me the error
 
     
     
     
    