hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
opt
/
codebharat
/
htdocs
/
admin
/
Upload FileeE
HOME
<?php include 'header.php'; ?> <!--Main container start --> <main class="ttr-wrapper"> <div class="container-fluid"> <div class="db-breadcrumb"> <h4 class="breadcrumb-title">Users List</h4> <ul class="db-breadcrumb-list"> <li><a href="index.php"><i class="fa fa-home"></i>Home</a></li> <li>Users List</li> </ul> </div> <div class="row"> <!-- Your Profile Views Chart --> <div class="col-lg-12 m-b30"> <div class="widget-box"> <div class="widget-inner"> <form class="edit-profile m-b30" id="add_sub_category"> <div class="row"> <div class="col-md-12 table-responsive"> <table class="table table-bordered" id="myTable"> <thead> <th>Sr.</th> <th>Name</th> <th>Email Id</th> <th>Phone Number</th> <th>Password</th> <th>DOB</th> <th>Gender</th> <th>Profession</th> <th>Date</th> </thead> <tbody> <?php $i=1; $sql = mysqli_query($conn,"SELECT * FROM users WHERE type!='1'") OR die(mysqli_error($conn)); while($row = mysqli_fetch_assoc($sql)){ ?> <tr> <td><?=$i;?></td> <td><?=$row['name'];?></td> <td><?=$row['email'];?></td> <td><?=$row['phone'];?></td> <td><?=$row['password'];?></td> <td><?=$row['date_of_birth'];?></td> <td><?=$row['gender'];?></td> <td><?=$row['profession'];?></td> <td><?=$row['created_date'];?></td> </tr> <?php $i++; } ?> </tbody> </table> </div> </div> </form> </div> </div> </div> <!-- Your Profile Views Chart END--> </div> </div> </main> <div class="ttr-overlay"></div> <?php include 'footer.php'; ?>