Beispiel #1
0
                            <div class="table-responsive">
                                <table class="table table-striped table-bordered table-hover" id="dataTables-example">
                                    <thead>
                                        <tr>
                                            <th>Student No </th>
                                            <th>First Name</th>
											<th>Last Name</th>											
											<th>Course</th>
                                            <th>Status</th>
											<th>Action</th>

                                        </tr>
                                    </thead>
                                    <tbody>
									<?php 
foreach ($student->studentList() as $a) {
    ?>
                                    <?php 
    $student->courseListName($a['course']);
    ?>
                                        <tr class="odd gradeX">
                                            <td><?php 
    echo $a['student_no'];
    ?>
</td>
                                            <td><?php 
    echo $a['first_name'];
    ?>
</td>
                                            <td><?php 
    echo $a['last_name'];