]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">About Us</h1> <ol class="breadcrumb mb-4"> <li class="breadcrumb-item"><a href="index.php">Dashboard</a></li> <li class="breadcrumb-item active">About Us</li> </ol> <div class="card mb-4"> <div class="card-header"><i class="fas fa-table mr-1"></i>About Us List</div> <div class="card-body"> <?php if(isset($_GET['succcess'])=='succcess') { ?> <div class="alert alert-success"> <strong>Success!</strong>Successfully Updated Blog.. </div> <?php } ?> <?php if(isset($_GET['del_blog'])=='del_blog') { ?> <div class="alert alert-success"> <strong>Success!</strong>Successfully Deleted Blog.. </div> <?php } ?> <?php if(isset($_GET['wrongdel_blog'])=='wrongdel_blog') { ?> <div class="alert alert-danger"> <strong>Error!</strong>Something Went Wrong.. </div> <?php } ?> <?php if(isset($_GET['wrongadd_blog'])=='wrongadd_blog') { ?> <div class="alert alert-danger"> <strong>Error!</strong>Something Went Wrong.. </div> <?php } ?> <div class="table-responsive"> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <?php if (isset($_GET['remove'])) { $delete_user=base64_decode($_GET['remove']); mysqli_query($con,"UPDATE tbl_customer set customer_status=0 where user_id='$delete_user'"); } ?> <tr> <th>Sr No</th> <!-- <th>Title</th> --> <!-- <th>Author</th> --> <!-- <th>Image</th> --> <!-- <th>Date</th> --> <th>Description</th> <th>Action</th> </tr> </thead> <tbody> <?php $count=1; $fetch_blog=mysqli_query($con,"select * from tbl_about where status=1"); while($res_blog=mysqli_fetch_array($fetch_blog)) { ?> <tr> <td><?=$count;?></td> <!-- <td><?=$res_blog['blog_name'];?></td> --> <!-- <td><?=$res_blog['author'];?></td> --> <!-- <td><img style="width:80px" src="uploads/<?=$res_blog['image'];?>"></td> --> <!-- <td><?=$res_blog['date'];?></td> --> <td><?=$res_blog['about_description'];?></td> <td><a href="javascript:void(0)" onclick="warning('add_about.php?edit_blog=<?=base64_encode($res_blog['about_id']);?>','Do You Want to Update About Us ?')" class="btn btn-success">Edit</a> <!-- <a href="javascript:void(0)" onclick="warning('controller.php?blog_id=<?=base64_encode($res_blog['blog_id']);?>','Do You Want to delete About Us ?')" class="btn btn-danger">Remove</a> --> </td> </tr> <?php $count++; } ?> </tbody> </table> </div> </div> </div> </div> </main> <?php include_once('footer.php'); ?>