📁
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
4207.55 KB
0644
🗑️
⬇️
✏️
🔒
Editing: advert.php
<div class="container mt-3"> <div class="d-flex flex-row justify-content-around mx-2 pt-3"> <div class="round pt-3"> <a href="ads.php"> <button class="btn-fixed"> <span> <i class='bx bxs-check-circle' style="font-size: 1.3rem;"></i> <p style="font-weight: 600;">Active(<?php $sql = "SELECT count(*) As 'total' FROM product where userid='".$usid."' && status='Approved' "; $sql2 = mysqli_query($con,$sql); $dad = mysqli_fetch_assoc($sql2); $kany=$dad['total']; echo $kany; ?>)</p> </button> </span> </div> <div class="round pt-3"> <a href="viewing.php"> <button class="btn-fixed"> <span> <i class='bx bxs-edit-alt' style="font-size: 1.rem;"></i> </span> <p style="font-weight: 600;">InReview (<?php $sql = "SELECT count(*) As 'total' FROM product where userid='".$usid."' && status='Review' "; $sql2 = mysqli_query($con,$sql); $dad = mysqli_fetch_assoc($sql2); $kany=$dad['total']; echo $kany; ?>)</p> </button> </a> </div> <div class="round pt-3"> <a href="decline.php"> <button class="btn-fixed"> <span> <svg xmlns="http://www.w3.org/2000/svg" height="24" width="24"><path d="M7.75 16.25Q8.625 17.075 9.713 17.538Q10.8 18 12 18Q14.5 18 16.25 16.25Q18 14.5 18 12Q18 9.5 16.25 7.75Q14.5 6 12 6V12ZM12 22Q9.925 22 8.1 21.212Q6.275 20.425 4.925 19.075Q3.575 17.725 2.788 15.9Q2 14.075 2 12Q2 9.925 2.788 8.1Q3.575 6.275 4.925 4.925Q6.275 3.575 8.1 2.787Q9.925 2 12 2Q14.075 2 15.9 2.787Q17.725 3.575 19.075 4.925Q20.425 6.275 21.212 8.1Q22 9.925 22 12Q22 14.075 21.212 15.9Q20.425 17.725 19.075 19.075Q17.725 20.425 15.9 21.212Q14.075 22 12 22ZM12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12ZM12 20Q15.325 20 17.663 17.663Q20 15.325 20 12Q20 8.675 17.663 6.337Q15.325 4 12 4Q8.675 4 6.338 6.337Q4 8.675 4 12Q4 15.325 6.338 17.663Q8.675 20 12 20Z"/></svg> </span> <p style="font-weight: 600;">Declined(<?php $sql = "SELECT count(*) As 'total' FROM product where userid='".$usid."' && status='Failed' "; $sql2 = mysqli_query($con,$sql); $dad = mysqli_fetch_assoc($sql2); $kany=$dad['total']; echo $kany; ?>)</p> </button> </a> </div> <div class="round round-active pt-3"> <a href="close.php"> <button class="btn-fixed"> <span> <i class="bx bxs-checkbox" style="font-size: 1.1rem; color: white; background: grey; border-radius: 50%; padding: 2px;"></i> </span> <p style="font-weight: 600;">Closed(<?php $sql = "SELECT count(*) As 'total' FROM product where userid='".$usid."' && status='Closed' "; $sql2 = mysqli_query($con,$sql); $dad = mysqli_fetch_assoc($sql2); $kany=$dad['total']; echo $kany; ?>)</p> </button> </a> </div> </div>
💾 Save Changes