?
Current Path : /home1/savoy/public_html/savoyglobal.net/cocorico/application/views/student/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/cocorico/application/views/student/roll_over_student.php |
<?php $this->load->view('documentreadyfunctions'); ?> <div class="grid_12" > <div class="box"> <div class="content no-padding"> <div class="header main"> Student Details</div> <table class="table" id="stud_sub"> <thead id="stud_sub_head"> <tr> <input style="width:15px;" type="checkbox" id="check_all" name="check_all" checked onclick="checkallstd(this.checked,'student_added')"/>Mark <!--<td style="text-align: center;height: 30px;">Sl no</td>--> <td style="text-align: center;">Student Name</td> <td style="text-align: center;" >Student Reg No</td> <td style="text-align: center;" >Gender</td> <td style="text-align: center;" >Nationality</td> </tr> </thead> <tbody id="student_added"> <?php $j = 1; foreach ($students as $list) { ?> <tr> <input type="hidden" name="student_id_<?= $j ?>" value="<?= $list['student_id'] ?>"/> <td> <input style="width:15px;" type="checkbox" id="select_student<?=$j?>" name="select_student<?=$j?>" checked /> </td> <!--<td style="text-align: center;height: 30px;"><?= $j ?></td>--> <td><?= $list['first_name'] . " " . $list['last_name'] ?></td> <td><?= $list['reg_no']?></td> <td><?= $list['gender']?></td> <td><?= $list['nationality']?></td> </tr> <?php $j++; } ?> </tbody> </table> </div> </div> </div> <div class="grid_12" > <div class="box"> <div class="actions"> <div class="actions-left"> <input type="reset"> </div> <div class="actions-right"> <button type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Save</button> </div> </div> </div> </div>