?
Path : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/ |
Current File : /home/u949514618/domains/karmaasrconsultants.com/public_html/admin/userscontent.php |
<div class="content-wrapper"> <form action="#" method="post"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Users <small> Details</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Users</li> </ol> </section> <!-- Main content --> <section class="content"> <!-- Small boxes (Stat box) --> <div class="row"> <div class="col-xs-12"> <div class="box"> <?php $query = "select * from users order by id desc"; $run = mysqli_query($con, $query); if(mysqli_num_rows($run)>0) { ?> <div class="box-header"> <h3 class="box-title">All User Details Here</h3> <div class="clear"></div> <div class="col-md-6"> <select name="bulk-options" class="form-control" id="" width="50%"> <option value="delete">Delete</option> <option value="author">Change To Author</option> <option value="admin">Change To Admin</option> </select> </div> <div class="col-md-3"><input type="submit" value="Apply" class="btn btn-block btn-primary"></div> <div class="col-md-3"><a href="add-user.php" class="btn btn-block btn-primary">Add Users</a></div> </div> <!-- /.box-header --> <div class="box-body"> <?php if(isset($error)){ echo "<span style='color:red;' class='pull-right'>$error</span>"; } else if(isset($msg)){ echo "<span style='color:green;' class='pull-right'>$msg</span>"; } ?> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th><input type="checkbox" id="selectallboxes" /></th> <th>Sr #</th> <th>Date</th> <th>Name</th> <th>Username</th> <th>Email</th> <th>Password</th> <th>Role</th> <th>Edit</th> <th>Del</th> </tr> </thead> <tbody> <?php while($row=mysqli_fetch_array($run)) { $id = $row['id']; $first_name = ucfirst($row['first_name']); $last_name = ucfirst($row['last_name']); $email = $row['email']; $username = $row['username']; $role = $row['role']; $image = $row['image']; $date = getdate($row['date']); $day = $date['mday']; $month = substr($date['month'],0,3); $year = $date['year']; ?> <tr> <td><input type="checkbox" class="checkboxes" name="checkboxes[]" value="<?php echo $id; ?>" /></td> <td><?php echo $id; ?></td> <td><?php echo "$day $month $year"; ?></td> <td><?php echo "$first_name $last_name"; ?></td> <td><?php echo $username; ?></td> <td><?php echo $email; ?></td> <td>*********</td> <td><?php echo ucfirst($role); ?></td> <td><a href="edit-user.php?edit=<?php echo $id; ?>"><i class="fa fa-pencil"></i></a></td> <td><a href="users.php?del=<?php echo $id; ?>"><i class="fa fa-times"></i></a></td> </tr> <?php } ?> </tbody> <tfoot> <tr> <th><input type="checkbox" /></th> <th>Sr #</th> <th>Date</th> <th>Name</th> <th>Username</th> <th>Email</th> <th>Password</th> <th>Role</th> <th>Edit</th> <th>Del</th> </tr> </tfoot> </table> </div> <!-- /.box-body --> <?php } else { echo "<center><h3>No user available now!!</h3></center>"; } ?> </div> <!-- /.box --> </div> </div> <!-- /.row --> <!-- Main row --> <!-- /.row (main row) --> </section> <!-- /.content --> </form> </div>