MMCT TEAM
Server IP : 2a02:4780:11:1017:0:31f1:b895:8  /  Your IP : 216.73.216.163
Web Server : LiteSpeed
System : Linux in-mum-web917.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64
User : u837925013 ( 837925013)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF
Directory (0755) :  /home/u837925013/domains/tech2wizard.com/public_html/admin/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u837925013/domains/tech2wizard.com/public_html/admin/client-interests.php
<?php 
$page='client-interests';
$page1='page';

include('inc/sidebar.php') ;
 if(isset($_GET['del']))
  {
      $id = $_GET['del'];
      $del = mysqli_query($con,"delete from client_service where id = '$id'");
     if($del){
      	echo "<script type='text/javascript'>window.location=\"client-interests.php\";</script>"; 
     }
  }
  if(isset($_GET['act']))
  { 
      $id = $_GET['act'];
      $act = mysqli_query($con,"UPDATE `client_service` SET `status` = '0' where id = '$id'");
     if($act){
      echo'<div id="hide-toast"class="toast" role="alert" aria-live="assertive" aria-atomic="true">
          <div class="toast-body alert">
                <i class="fa fa-warning"></i>laptop-repairing DeActivated.<i class="fa fa-close"id="close"></i>
          </div>
        </div>';
        echo "<script type='text/javascript'>window.history.pushState('object or string', 'Title', 'client-interests.php');</script>";
      
     }
  }
  if(isset($_GET['ina']))
  {
      $id = $_GET['ina'];
      $ina = mysqli_query($con,"UPDATE `client_service` SET `status` = '1' where id = '$id'");
     if($ina){
     echo'<div id="hide-toast"class="toast" role="success" aria-live="assertive" aria-atomic="true">
          <div class="toast-body success">
                <i class="fa fa-warning"></i>laptop-repairing Activated.<i class="fa fa-close"id="close"></i>
          </div>
        </div>';
        echo "<script type='text/javascript'>window.history.pushState('object or string', 'Title', 'client-interests.php');</script>";
     }
  }
    
?>


<!-- navbar-wrapper start -->
  <div class="body-wrapper">
    <div class="bodywrapper__inner">
        <div class="row align-items-center mb-30 justify-content-between">
            <div class="col-lg-4 col-sm-6">
                <h6 class="page-title">Product We Service</h6>
            </div>
            <div class="col-lg-8 col-sm-6 text-sm-right mt-sm-0 mt-3 right-part">
                <div class="d-flex flex-wrap justify-content-end flex-gap-8">
                    <a type="button"href="client-interests-add.php" class="btn btn--primary"style="height: 38px;"><i class="fa fa-plus"></i>Add New</a>

                </div>
            </div>
        </div>

        <div class="row">
            <div class="col-lg-12">
                <div class="card">
                    <div class="card-body p-0">
                        <div class="table-responsive--md table-responsive">
                            <table id="example" class="table table--light style--two">
                                <thead>
                                    <tr>
                                        <th>SL</th>
                                        <th>Icon</th>
                                        <th>Title</th>
                                        <th>Action</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php	
                                	$sql= mysqli_query($con, "SELECT * FROM client_service ORDER BY id DESC");
                                	$i=0;
                                	while($data= mysqli_fetch_array($sql))
                                	{
                                	   
                                          $i++; 
                                  ?>
                                    <tr>
                                        <td data-label="SL"><?php echo $i; ?></td>
                                        <td data-label="News"><img src="<?php echo CLIENT_SITE_PATH.$data['icon']; ?>"style="width:40px;height:40px;"></td>
                                        <td data-label="News"><?php echo $data['title']; ?></td>
                                        <td data-label="Action">
                                            <?php if($data['status']==1){ ?>
                                            <button onclick="location.reload();location.href='client-interests.php?act=<?php echo $data['id'];?>'" type="button" class="icon-btn btn-success"> ACTIVE </button>
                                            <?php }else{?>
                                            <button onclick="location.reload();location.href='client-interests.php?ina=<?php echo $data['id'];?>'" type="button" class="icon-btn btn-danger">DEACTIVE</button>
                                            <?php } ?>
                                            <a href="client-interests-add.php?edit=<?php echo $data['id'];?>"type="button" class="icon-btn btn-success">EDIT</a>
                                            <a href="client-interests.php?del=<?php echo $data['id'];?>" onclick="return confirm('Are you sure you want to delete this?');"type="button" class="icon-btn btn-danger">DELETE</a>
                                        </td>
                                    </tr>
                                    <?php } ?>
                                </tbody>
                            </table>
                           
                        </div>
                    </div>
                </div>
            </div>
        </div>

            <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
                  <div class="modal-dialog" role="document">
                    <div class="modal-content">
                        
                          <div class="modal-header">
                            <h5 class="modal-title" id="exampleModalLabel">Update Category</h5>
                            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                              <span aria-hidden="true">&times;</span>
                            </button>
                          </div>
                          <form method="post" action="" name="datafrm" id="datafrm" enctype="multipart/form-data">
                            <input type="hidden" name="id"id="id" value="" />
                            <div class="modal-body">
                                <div class="form-group">
                                    <label class="form-control-label font-weight-bold">News Title  <span class="text-danger">*</span></label>
                                    <input type="text" class="form-control" placeholder="News Title" value=""id="news" name="name" required="" />
                                </div>
                                <div class="form-group">
                                    <label class="form-control-label font-weight-bold">Link <span class="text-danger">*</span></label>
                                    <input type="url" class="form-control" placeholder="Link" value=""id="link" name="link" required="" />
                                </div>
                                <div class="status"></div>
                            </div>
                            <div class="modal-footer">
                                <input type="submit" name="datafrmSubmit" id="datafrmSubmit"value="Update"class="btn btn--primary w-100">
                            </div>
                        </form>
                    </div>
                  </div>
                </div>

        <div id="cuModal" class="modal fade" tabindex="-1" role="dialog">
            <div class="modal-dialog" role="document">
                <div class="modal-content">
                    <div class="modal-header">
                        <h5 class="modal-title">Add New Category</h5>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                            <span aria-hidden="true">×</span>
                        </button>
                    </div>
                    <form method="post" action="" name="datafrm" id="datafrm" enctype="multipart/form-data">
                        <input type="hidden" name="_token" value="NVqMPe0GFAbZmPwzrJyEIWs0pH58bz54XMjcH6Tl" />
                        <div class="modal-body">
                            <div class="form-group">
                                <label class="form-control-label font-weight-bold">News Title <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" placeholder="News Title" value="" name="name" required="" />
                            </div>
                             <div class="form-group">
                                <label class="form-control-label font-weight-bold">Link <span class="text-danger">*</span></label>
                                <input type="text" class="form-control" placeholder="Link" value="" name="link" required="" />
                            </div>
                            <div class="status"></div>
                        </div>
                        <div class="modal-footer">
                            <input type="submit" name="datafrmSubmit" id="datafrmSubmit"value="Submit"class="btn btn--primary w-100">
                        </div>
                    </form>
                </div>
            </div>
        </div>
        
    </div>
    <!-- bodywrapper__inner end -->
</div>
<!-- body-wrapper end -->

    </div>
 
 <!-- body-wrapper end -->
    </div>

<!-- jQuery library -->

<?php include('inc/footer.php') ?>

MMCT - 2023