📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
5733.11 KB
0644
🗑️
⬇️
✏️
🔒
Editing: complaints.php
<?php include "admin_header.php"; ?> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h5 mb-4 text-gray-800">Customer Complaints</h1> <div class="table-responsive"> <table class="table table-bordered" id="dataTable" width='100%' border="0" style="color:black; font-size:13px; font-weight:500;" cellspacing='10' data-toggle='bootgrid'> <thead><tr bgcolor="#FF339A" style="color:white;"> <th data-column-id='employee_name'>Name</th> <th data-column-id='employee_name'>Mobile Number</th> <th data-column-id='employee_name'>Email</th> <th data-column-id='employee_name'>Nature of Complaint</th> <th data-column-id='employee_name'>Details</th> <th data-column-id='employee_name'>Incident DateTime</th> <th data-column-id='employee_name'>ProposedCorrectiveAction</th> <th data-column-id='employee_name'>Date logged</th> </tr> </thead> <?php $sql ="SELECT * from CustomerComplaints ORDER BY ComplaintID DESC"; $sql2 = mysqli_query($con,$sql); while($row = mysqli_fetch_array($sql2)){ echo'<tr> <td>'.$row['Name'].'</td> <td>'.$row['PhoneNumber'].'</td> <td>'.$row['Email'].'</td> <td>'.$row['ReasonForComplaint'].'</td> <td>'.$row['ComplaintDetails'].'</td> <td>'.formatDateTime($row['ComplaintTime']).'</td> <td>'.$row['ProposedCorrectiveAction '].'</td> <td>'.formatDateTime($row['date']).'</td> </tr>'; }?> </table> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <?php include "footer.php"; ?>
💾 Save Changes