I want to display serial numbers beside my mysql query result , example:
Serial Number Name Country
1. John USA
2. Srijon UK
I have tried something with PHP Loops, but I couldn't make it work. Would you please kindly help me? please note that the serial numbers are not values retrieved from database.
Thanks in Advance :)
<?php if(count($records) > 0) { ?>
<table id="table1" class="gtable sortable">
<thead>
<tr>
<th>Batch Name</th>
<th>Class</th>
<th>Batch Instructor</th>
</tr>
</thead>
<tbody>
<?php
foreach ($records as $row){?>
<tr>
<td> <a href="<?php echo base_url(); ?>batch/<?php echo $row['batchid']; ?>"><?php echo $row['batchname'];?></a> </td>
<td><?php echo $row['class'];?></td>
<td><?php echo $row['batchinstructor'];?></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php } ?>
<div> <?php echo $this->pagination->create_links(); ?> </div>