]nbmbmbnmbnmbytutytyutyutyutyumbnmjhkhjkhjkhjkhjkhjknnnnnnnn
bnmbnmbnmnbbtyutyutyutyutyutyu,nm,nmmnmm,bbbbbn
/
home
/
aaharway
/
domains
/
awards.aaharways.com
/
public_html
/
adm
/
Upload FileeE
HOME
<?php include_once('header.php'); ?> <div id="layoutSidenav_content"> <main> <div class="container-fluid"> <h1 class="mt-4">Network List</h1> <ol class="breadcrumb mb-4"> <li class="breadcrumb-item"><a href="index.html">Dashboard</a></li> <li class="breadcrumb-item active">Network</li> </ol> <?php if(isset($_GET['success_update'])=='success_update') { ?> <div class="alert alert-success alert-dismissible"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <p>Successfully Updated Network..!</p> </div> <?php } ?> <?php if(isset($_GET['delete_success'])=='delete_success') { ?> <div class="alert alert-success alert-dismissible"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <p>Successfully Deleted Network..!</p> </div> <?php } ?> <div class="card mb-4"> <div class="card-header"><i class="fas fa-table mr-1"></i>Network List<a href="add_network.php" class="btn btn-warning" style="float: right;"><i class="fa fa-plus"></i>Add Network</a></div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>Sr No</th> <th>Network Title</th> <th>Short Description</th> <th>Date</th> <th>Action</th> </tr> </thead> <tbody> <?php $count=1; $fetch_blog=mysqli_query($con,"SELECT * from tbl_network where status=1 order by network_id asc"); while($res_blog=mysqli_fetch_array($fetch_blog)) { ?> <tr> <td><?=$count++;?></td> <td><?=$res_blog['title'];?></td> <td><?=substr($res_blog['short'],0,250);?></td> <td><?=$res_blog['created_at'];?></td> <td> <div style="display:flex"> <a title="Edit" href="javascript:void(0)" onclick="warning('add_network.php?id=<?=base64_encode($res_blog['network_id']);?>','Do You Want to Update Network ?')" class="btn btn-sm btn-success"><i class="fa fa-edit"></i></a> <a title="Delete" href="javascript:void(0)" onclick="warning('controller.php?network_del=<?=base64_encode($res_blog['network_id']);?>','Do You Want to delete Network ?')" class="btn btn-sm btn-danger"><i class="fas fa-trash-alt"></i></i></a> </div> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </main> <?php include_once('footer.php'); ?>