📁
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
5730.96 KB
0644
🗑️
⬇️
✏️
🔒
Editing: review.php
<?php include "header.php"; ?> <div id="layoutSidenav_content"> <main> <div class="container-fluid px-4"> <h1 class="mt-4">Listings Section</h1> <ol class="breadcrumb mb-4"> <li class="breadcrumb-item active">Review Listing</li> </ol> <div class="row"> <div class="col-xl-12 col-md-12"> <div class="card-body pb-0"> <h5 class="card-title">New Listings<span>| Review</span></h5> <table class="table table-borderless"> <thead> <tr> <th scope="col">Product</th> <th scope="col">Price</th> <th scope="col">Percentage</th> <th scope="col">Type</th> <th scope="col">Review</th> </tr> </thead> <tbody> <?php //get the all unreviewed product $sqk = "SELECT all* from lest where status='Reviewing' ORDER BY Date"; $sqlp = mysqli_query($con,$sqk); while($rowe = mysqli_fetch_array($sqlp)) { $tit = $rowe['title']; $neme = $rowe['name']; $pri = $rowe['price']; $pro = $rowe['typer']; $per = $rowe['percent']; $imageURL='../lists/'.$rowe["file1"]; echo ' <tr> <td><span class="text-primary fw-bold">'.$neme.'</span></td> <td>₦ '.$pri.'</td> <td>'.$per.'%</td> <td class="fw-bold">'.$pro.'</td> <td><form method="post" action="reviews.php"><input type="text" class="form-control" value="'.$rowe["s"].'" name="idn" hidden/> <button type="submit" class="btn-primary" name="submitt"> Review</button></form></td> </tr>'; } ?> </tbody> </table> </div><!-- End Top Selling --> </div></div> </div> </main> <?php include "footer.php"; ?>
💾 Save Changes