Your IP : 3.142.195.79
<?php
session_start(); ob_start();
include("lib/connect.inc.php");
if($uidx != 1){
header("Location:../login.php");
}
if(isset($_POST['ShowStage'])){
$_SESSION['stage']=$_POST['ShowStage'];
}
if(isset($_POST['ReleaseFund'])){
$id=$_POST['ReleaseFund'];
$db->query("UPDATE user SET wallet=0 WHERE id='$id' ");
$report = 'Locked funds have been released for '.userName($id);
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Car Promo Prospects</title>
<link rel="shortcut icon" href="img/fav.png" />
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome -->
<link rel="stylesheet" href="treant/Treant.css">
<link rel="stylesheet" href="treant/examples/tree/basic-example.css">
<?php include('head.php'); ?>
</head>
<body class="hold-transition sidebar-mini layout-fixed">
<div class="wrapper">
<?php include('nav.php'); ?>
<div class="content-wrapper">
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Car Promo Prospects</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active">Car Promo Prospects Team</li>
</ol>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Content Wrapper. Contains page content -->
<!-- Content Header (Page header) -->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header text-white bg-dark">
<h5 style="float: left">Prospect Team</h5>
</div>
<div class="card-body">
<div class="overflow-x-auto">
<table class="table table-bordered table-sm" id="example1">
<thead>
<tr>
<th>No</th>
<th>Name(s)</th>
<th>Email</th>
<th>Username</th>
<th>Joined On</th>
<th>Hit Stage 3 On</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
$start = strtotime('2022-02-01');
$sql = $db->query("SELECT * FROM user WHERE s3date>='$start' AND s3 BETWEEN 5 AND 6");
while($row = $sql->fetch_assoc()) { $e = $i++;
?>
<tr>
<td><?php echo $e; ?></td>
<td><?php echo $row['firstname'].' '.$row['lastname'] ?></td>
<td><?php echo $row['email'] ?></td>
<td><?php echo $row['user']; ?></td>
<td><?php echo substr($row['created'],0,10); ?></td>
<td><?php echo date('jS M H:i',$row['s3date']); ?></td>
<td><form method="post">
<button type="submit" value="<?php echo $row['id']; ?>" name="FindUser">Profile</button>
</form></td>
</tr>
<?php } ?>
</tbody>
<tfoot>
</tfoot>
</table>
<p>This list comprise of members that joined stage Three within the promo period (February - April 2022). At the end of the contest the system will generate the winners</p>
</div>
</div>
</div>
</div>
</div><!-- /.card-header -->
<!-- /.card-body -->
</div><!-- /.card-body -->
</div>
<!-- /.nav-tabs-custom -->
</div>
<!-- /.col -->
<!-- /.content-wrapper -->
<?php include('foot.php'); ?>
<!-- Control Sidebar -->
</div>
<!-- ./wrapper -->
<!-- jQuery -->
<script src="../plugins/jquery/jquery.min.js"></script>
<!-- jQuery UI 1.11.4 -->
<script src="../plugins/jquery-ui/jquery-ui.min.js"></script>
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
<script>
$.widget.bridge('uibutton', $.ui.button)
</script>
<!-- Bootstrap 4 -->
<script src="../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="../plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Summernote -->
<script src="../plugins/summernote/summernote-bs4.min.js"></script>
<!-- overlayScrollbars -->
<script src="../plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"></script>
<!-- AdminLTE App -->
<script src="../dist/js/adminlte.js"></script>
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
<script src="../dist/js/pages/dashboard.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="../dist/js/demo.js"></script>
<!-- DataTables -->
<!-- page script -->
<script src="treant/vendor/raphael.js"></script>
<script src="treant/Treant.js"></script>
<script>
new Treant( chart_config );
</script>
<!-- DataTables -->
<script src="../plugins/datatables/jquery.dataTables.min.js"></script>
<script src="../plugins/datatables-bs4/js/dataTables.bootstrap4.min.js"></script>
<script src="../plugins/datatables-responsive/js/dataTables.responsive.min.js"></script>
<script src="../plugins/datatables-responsive/js/responsive.bootstrap4.min.js"></script>
<!-- page script -->
<script>
$(function () {
$("#example1").DataTable({
"responsive": true,
"autoWidth": false,
});
$("#example3").DataTable({
"responsive": true,
"autoWidth": true,
"responsive": true,
});
$('#example2').DataTable({
"paging": true,
"lengthChange": false,
"searching": false,
"ordering": true,
"info": true,
"autoWidth": false,
"responsive": true,
});
});
</script>
</body>
</html>