D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
designpitara.com
/
admin
/
services
/
Filename :
view-services.php
back
Copy
<?php include("../include/config.php"); include("../include/sessionhandle.php"); include("../include/header.php"); ?> <style> #my_services ul li:nth-child(2) { background-color: #eb6a4e; } #my_services ul li:nth-child(2) a { color: #fff; } #my_services ul li:nth-child(2) a:hover { background-color: #eb6a4e; } #all_services_details .service_det img { width: 40% !important; height: 100px !important; display: block; margin: 0 auto; } .course-detailsa img{ width: 100% !important; height: 250px !important; } </style> <script> window.onload = function() { document.getElementById('my_services').classList.add("active"); document.getElementById('my_services1').classList.add("in"); }; </script> <div class="small-header"> <div class="hpanel"> <div class="panel-body"> <div id="hbreadcrumb" class="pull-right"> <ol class="hbreadcrumb breadcrumb"> <li><a href="<?php echo $admin_baseurl . 'dashboard.php';?>">Dashboard</a></li> <li class="active"> <span>Services</span> </li> </ol> </div> <h2 class="font-light m-b-xs"> View All Services </h2> </div> </div> </div> <div class="content"> <div class="hpanel"> <div class="panel-heading hbuilt"> <div class="panel-tools"> <a class="showhide"><i class="fa fa-chevron-up"></i></a> <a class="fullscreen"><i class="fa fa-expand"></i></a> </div> View All Services </div> <div class="panel-body"> <div class="table-responsive"> <table id="all_services_details" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>#</th> <th>Service Name</th> <th>Image</th> <th>Service Details</th> <th>Action</th> </tr> </thead> <tbody> <?php $srno = 0; $sqlAssign1 = "SELECT * FROM `services` ORDER BY `services`.`id` DESC"; $resultAssign1 = mysqli_query($conn, $sqlAssign1); if (mysqli_num_rows($resultAssign1) > 0) { while($rows = mysqli_fetch_assoc($resultAssign1)) { $id = $rows['id']; $s_name = $rows['name']; $s_detail = $rows['detail']; $s_image = $rows['image']; $s_url = $rows['url']; $s_keyword = $rows['keyword']; $s_description = $rows['description']; $s_status = $rows['status']; ?> <tr> <th scope="row"><?php echo $srno += 1;?></th> <td> <p> <?php echo $s_name;?></p> </td> <td><?php if(!empty($s_image)){?> <img src="<?php echo $admin_baseurl . 'services/upload/' .$s_image;?>" style="width:100px;"> <?php }?> </td> <td> <?php if(!empty($s_detail)){?> <a type="button" course-details='<?php echo $s_detail;?>' data-toggle="modal" data-target="#srkproperty_details" class="btn theme-btn show_property_details" style="cursor: pointer;">More Detail</a> <?php } ?> </td> <td> <div class="action_btns"> <form method="post" action="update-service.php?id=<?php echo $id;?>"> <button type="submit" class="actionbtn"><i class="fa fa-pencil-square-o text-success" aria-hidden="true"></i></button> </form> <form method="post" action="execute.php?id=<?php echo $id;?>"> <button type="submit" name="delete_services" class="actionbtn" onclick="return confirm('Do you want to delete this data?')"><i class="fa fa-trash text-danger" aria-hidden="true"></i></button> </form> <?php if($s_status == 'active'){?> <form method="post" action="execute.php?id=<?php echo $id;?>"> <button type="submit" name="status_deactive_services" class="actionbtn"><i class="fa fa-toggle-on text-success" aria-hidden="true"></i></button> </form> <?php }else{?> <form method="post" action="execute.php?id=<?php echo $id;?>"> <button type="submit" name="status_active_services" class="actionbtn"><i class="fa fa-toggle-off text-danger" aria-hidden="true"></i></button> </form> <?php }?> </div> </td> </tr> <?php }}?> </tbody> </table> </div> </div> </div> </div> <br> <?php include('../include/footer.php'); ?>