Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. <table class="table table-responsive table-bordered" id="coursetable">
  2. <tr>
  3. <th>PROGRAM</th>
  4. <th>YEAR LEVEL</th>
  5. <th>COURSE NAME</th>
  6. <th>COURSE CODE</th>
  7. <th>UNITS</th>
  8. <th colspan="2">SEMESTER OFFERED</th>
  9. </tr>
  10. <tr>
  11. <td>
  12. <div class="form-group">
  13. <select class="form-control" name="program_id" id="program_id">
  14. <?php if($programs): ?>
  15. <?php foreach($programs as $key => $value): ?>
  16. <option value="<?= $value -> program_id ?>"><?= $value -> programs ?></option>
  17. <?php endforeach; ?>
  18. <?php endif; ?>
  19. </select>
  20. </div>
  21. </td>
  22. <td>
  23. <div class="form-group">
  24. <select class="form-control" name="collegeyear_id"></select>
  25. </div>
  26. </td>
  27. <td>
  28. <div class="form-group">
  29. <input type="text" class="form-control" placeholder="COURSE...">
  30. </div>
  31. </td>
  32. <td>
  33. <div class="form-group">
  34. <input type="text" class="form-control" placeholder="COURSE CODE">
  35. </div>
  36. </td>
  37. <td>
  38. <div class="form-group">
  39. <input type="text" class="form-control" placeholder="UNITS">
  40. </div>
  41. </td>
  42. <td>
  43. <div class="form-group">
  44. <select class="form-control">
  45.  
  46. </select>
  47. </div>
  48. </td>
  49. <td>
  50. <button class="btn btn-success" id="addmoretable" type="button"><span class="fa fa-plus"></span></button>
  51. </td>
  52. </tr>
  53. </table>
  54. <?= form_close(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement