View file File name : manage_core_team.php Content :<div class="container-fluid"> <div class="col-md-12 content-center loan-comparision1"> <div class="card-plain"> <h2 class="text-center">CORE TEAM</h2> <table id="myTable"> <thead> <th>Sr No</th> <th>Name</th> <th>Email</th> <th>Mobile</th> <th>Designation</th> <th>Image</th> <th>updated by</th> <th>Action</th> <th></th> <th></th> </thead> <?php $count=0; foreach($test as $dt){ $count+=1; ?> <tbody> <td><?=$count?></td> <td><?=$dt->name?></td> <td><?=$dt->email?></td> <td><?=$dt->mobile?></td> <td><?=$dt->designation?></td> <td><img src="<?=$dt->image?>" style="width:100px;height:100px;border-radius:30px;"></td> <td><?=$dt->first_name?> <?=$dt->last_name?> </td> <td><button class="btn btn-info" onclick="window.location.href='<?=base_url()?>Core_team/edit_team?id=<?=$dt->id?>'">Edit</button> </td> <td> <button class="btn btn-primary" onclick="window.location.href='<?=base_url()?>Core_team/edit_team_profile?id=<?=$dt->id?>'">Change Profile</button> </td> <td><button class="btn btn-danger" onclick="window.location.href='<?=base_url()?>Core_team/delete_core?id=<?=$dt->id?>'">Delete</button></td> </tbody> <?php } ?> </table> </div> </div> </div>