Your IP : 3.145.51.35
<?php session_start(); ob_start();
error_reporting(0);
@ini_set('display_error', 0); include("../cludes/connect.inc.php");
$page = 5;
$sid = $_SESSION['ssn'];
$que=$db->query("select * FROM state WHERE sn='$sid' " )or die(mysqli_error());
$ror=mysqli_fetch_array($que);
$state = $ror['state'];
if(array_key_exists('exp', $_POST)){
$_SESSION['rid'] = $_POST['sn'] ;
header('location: group.php');
exit;
}
if(array_key_exists('update', $_POST)){
$_SESSION['rid'] = $_POST['sn'] ;
}
$rid = $_SESSION['rid'];
$query=$db->query("select * FROM region WHERE sn='$rid' " )or die(mysqli_error());
$ro=mysqli_fetch_array($query);
$region = $ro['region'];
if(array_key_exists('del', $_POST)){
$sn = $_POST['sn'];
$sql = $db->query($sql = "DELETE FROM region WHERE sn='$sn' ") or die(mysqli_error());
$reportadd="Region Successfully Deleted!";
}
if(array_key_exists('register', $_POST)){
$region = ucfirst(strtolower($_POST['region']));
$overseer = ucwords(strtolower($_POST['overseer']));
$phone = $_POST['phone'];
$pass = rand(2345,8549);
$result = $db->query("SELECT * FROM region WHERE region = '$region' AND state = '$tate' ") or die(mysqli_error());
$number =mysqli_num_rows($result);
if ($number > 0){
$reportadded ="This Region Has Already Been Registered";
$continue = false;
}
else{
$res2 = $db->query("INSERT INTO region (state,region,overseer,phone,pass,sid)
VALUES('$state','$region','$overseer','$phone','$pass','$sid')") or die(mysqli_error());
$resx = $db->query("INSERT INTO info (info,x,rep)
VALUES('<font color=\"red\"><b>WELCOME TO THE MOBILE REPORT PLATFORM</b> </font> You can now submit attendance reports for weekly activities online using this platform. You can also manage database of church members and converts including converts follow-up reports and convert training. For more information, call 08150906604','1','$rep')") or die(mysqli_error());
}
if($res2){
$reportadded="User Data Successfully Added!";
}
}
if(array_key_exists('upd', $_POST)){
$reg = ucfirst(strtolower($_POST['reg']));
$region = ucfirst(strtolower($_POST['region']));
$overseer = ucwords(strtolower($_POST['overseer']));
$phone = $_POST['phone'];
$res2 = $db->query($sql = "UPDATE region SET region='$region',overseer='$overseer',phone='$phone' WHERE sn='$rid' ") or die(mysqli_error());
$reportadded="User Data Successfully Updated!";
$res2 = $db->query($sql = "UPDATE district SET region='$region' WHERE region='$zon' ") or die(mysqli_error());
unset($_SESSION['rid']);
}
//$res2 = $db->query($sql = "UPDATE report SET ww='14' ") or die(mysqli_error());
if(array_key_exists('regista', $_POST)){
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$phone = $_POST['phone'];
$email = $_POST['email'];
$sex = $_POST['sex'];
$district = $_POST['district'];
$usertype = $_POST['usertype'];
$username = $_POST['username'];
$password = $_POST['password'];
$confirmpassword = $_POST['confirmpassword'];
$qry = " SELECT * FROM admin WHERE username = '$username' ";
$result = $db->query($qry) or die(mysqli_error());
$num = mysqli_num_rows($result);
if($num > 0){
$erradmin = 'The username: '.$username.', has already been used. Try another!';
$continue = false;
}
else{
$sql = "INSERT INTO admin (firstname,lastname,usertype,username,password,email,phone,registeredby,sex,district,rid,sid,state,region)
VALUES('$firstname','$lastname','$usertype','$username','$password','$email','$phone','$rep','$sex','$district','$rid','$sid','$state','$region') ";
$res2 = $db->query($sql) or die(mysqli_error());
if($res2){
$adminadd="User Successfully Added";
}
}}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Attendance Report</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.5 -->
<link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- daterange picker -->
<link rel="stylesheet" href="../plugins/daterangepicker/daterangepicker-bs3.css">
<!-- iCheck for checkboxes and radio inputs -->
<link rel="stylesheet" href="../plugins/iCheck/all.css">
<!-- Bootstrap Color Picker -->
<link rel="stylesheet" href="../plugins/colorpicker/bootstrap-colorpicker.min.css">
<!-- Bootstrap time Picker -->
<link rel="stylesheet" href="../plugins/timepicker/bootstrap-timepicker.min.css">
<!-- Select2 -->
<link rel="stylesheet" href="../plugins/select2/select2.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="../dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="../dist/css/skins/_all-skins.min.css">
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php require('header.php'); ?>
<!-- Left side column. contains the logo and sidebar -->
<?php require('sidebar.php'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Administrator Setup
</h1>
<ol class="breadcrumb">
<li><i class="fa fa-dashboard"></i> Setup</li>
<li class=""> <a href="state.php">Nigeria</a></li>
<li class=""> <?php echo $state; ?></li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row"> <?php if(isset($_SESSION['rid'])){
?>
<div class="col-md-5 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Update Region: <?php echo $ro['region']; ?></h3> <div style="float:right"><a href="?user=users">Users</a></div>
</div><!-- /.box-header -->
<div class="box-body">
<font color="#00CC00"> <b> <?php echo $reportadded ; ?></b></font>
<form class="form-horizontal" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Region</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region" value="<?php echo $ro['region']; ?>" name="region">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Region Overseer</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region Overseer's Name" value="<?php echo $ro['overseer']; ?>" name="overseer">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Phone Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region Overseer's Phone Number" value="<?php echo $ro['phone']; ?>" name="phone">
</div>
</div>
<div class="form-Region">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-info" name="upd">Update Region</button>
</div>
</div>
</form>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
<?php } else{ ?>
<div class="col-md-5 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Register Region</h3>
</div><!-- /.box-header -->
<div class="box-body">
<font color="#00CC00"> <b> <?php echo $reportadded ; ?></b></font>
<form class="form-horizontal" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">State</label>
<div class="col-sm-10">
<select class="form-control" name="state"><option><?php echo $state; ?></option></select>
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Region</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region" name="region">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Region Coordinator</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region Overseer's Name" name="overseer">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Phone Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Region Coordinator's Phone Number" name="phone">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary" name="register">Register Region</button>
</div>
</div>
</form>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
<?php } ?>
<div class="col-md-7 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Regions in <b> <?php echo $state ; ?> State</b></h3>
</div><!-- /.box-header -->
<div class="box-body">
<font color="#00CC00"> <b> <?php echo $reportadd ; ?></b></font>
<table id="example1" class="table table-bordered ">
<thead>
<tr>
<th>SN</th>
<th>Region</th>
<th>PWD</th>
<th>Overseer</th>
<th>Mobile Number</th>
<th>Update</th><th>Explore</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<?php $i=1;
$query=$db->query("select * FROM region WHERE sid = '$sid' ORDER BY region ASC " )or die(mysqli_error());
while($row=mysqli_fetch_array($query)){
$sn = $row['sn'];
$e=$i++ ;
?>
<tr class="odd gradeX">
<td class="center"><?php echo $e ?></td>
<td><?php echo $row['region']; ?></td>
<td><?php echo $row['pass']; ?></td>
<td><?php echo $row['overseer'] ?></td>
<td><a href="tel:<?php echo $row['phone']; ?>"><?php echo $row['phone']; ?></a></td>
<td><form method="post" >
<input name="sn" type="hidden" value="<?php echo $row['sn']; ?>">
<button type="submit" class="btn btn-success btn-xs" name="update">Update</button></td><td> <button type="submit" class="btn btn-primary btn-xs" name="exp">Explore</button>
</td><td> <button type="submit" class="btn btn-danger btn-xs" name="del">Delete</button>
</form></td>
</tr>
<?php } ?>
</tbody>
</table>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div>
</div><!-- /.row -->
<?php if($_GET['user']=='users'){ ?>
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Register Users for <b> <?php echo $region ; ?> Region</b></h3>
</div><!-- /.box-header -->
<div class="box-body">
<h3><font color="green"><?php echo $adminadd; ?></font></h3>
<table class="table table-bordered table-hover table-striped tablesorter">
<tbody>
<tr>
<td><form method="post">
<div class="form-group">
<p>
<label>Surname</label>
<input name="firstname" class="form-control" id="firstname">
</p>
<p><font class="error"><?php echo $firstname2; ?></font></p>
<p class="help-block"></p>
</div>
<div class="form-group">
<p>
<label>Other names</label>
<input name="lastname" class="form-control" id="lastname">
</p>
</div>
<div class="form-group">
<p>
<label>Phone</label>
<input name="phone" class="form-control" id="phone">
</p>
<p><span class="help-inline"><?php echo $phone2; ?></span></p>
<p class="help-block"></p>
</div>
<div class="form-group">
<p>
<label>Username</label>
<input name="username" class="form-control" id="username">
</p>
<p><span class="help-inline"><?php echo $username2; ?></span></p>
<p class="help-block"></p>
</div>
<div class="form-group">
<p>
<label>Password</label>
<input name="password" type="password" class="form-control" id="password">
</p>
<p><span class="help-inline"><font color="red"><?php echo $password2; ?></font></span></p>
<p class="help-block"></p>
</div>
<div class="form-group">
<label>Confirm Password</label>
<input name="confirmpassword" type="password" class="form-control" id="confirmpassword">
<p class="help-block"></p>
</div>
<div class="form-group">
<p>
<label>User Account</label>
<select name="usertype" id="usertype" class="form-control">
<option value="user">Software User</option>
<option value="account">Accountant</option>
<option value="admin">Administrator</option>
</select></p>
<button type="reset" class="btn btn-default">Reset Form</button>
<button type="submit" name="regista" class="btn btn-default">Register User</button>
</form></td>
</tr>
</tbody>
</table>
</div></div></div>
<div class="col-md-8 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Registered Users for <b> <?php echo $region ; ?> Region</b></h3>
</div><!-- /.box-header -->
<div class="box-body">
<table class="table table-striped table-bordered table-hover" id="dataTables-example">
<thead>
<tr><th>SN</th>
<th>Surname</th>
<th>Other Names</th>
<th>Status</th>
<th>Log in/out time</th>
<th>User Name</th>
<th>Account Type</th>
<th>Authorize</th>
<th>Convert</th>
</tr>
</thead>
<tbody>
<?php $i = 1;
$query=$db->query("select * FROM admin WHERE rid = '$rid' ORDER BY active DESC " )or die(mysqli_error());
while($row=mysqli_fetch_array($query)){
$e = $i++;
?>
<form method="post"><tr style="color:<?php if($row['status'] == 'Online'){ echo 'blue' ; }?>" class="odd gradeX">
<td> <?php echo $e ; ?></td>
<td><a href="profile3.php?sn=<?php echo $row['sn'] ?>"><i class="btn btn-primary btn-xs"><?php echo ucfirst($row['firstname']) ?></i></a></td>
<td><?php echo ucfirst($row['lastname']) ?></td>
<td class="center"><font color='<?php if($row['status'] == 'Online'){ echo '#00DF00' ; } else{echo '#FF0000' ;}?>' >
<?php echo $row['status'] ?>
</font></td>
<td class="center"><?php echo $row['logtime'] ?></td>
<td class="center"><?php echo $row['username'] ?></td>
<td class="center"><?php echo ucfirst($row['usertype']) ?></td>
<td class="center"><input type="hidden" name="sn" value="<?php echo $row['sn'] ?>">
<?php $active = $row['active']; if($active=='1'){ ?><button type="submit" name="deact" class="btn btn-warning btn-xs">Deactivate</button>
<?php } elseif($active=='0'){ ?>
<button type="submit" name="act" class="btn btn-primary btn-xs">Activate</button>
<?php } ?></td>
<td class="center">
<button type="submit" name="con" class="btn btn-info btn-xs">Convert</button></td>
</tr></form>
<?php } ?>
</tbody>
</table>
</div></div></div>
</div><!-- /.row -->
<?php } ?>
<!-- =========================================================== -->
<?php unset($_SESSION['dsn']); // require('ibo.php'); ?>
<?php // require('chat.php'); ?>
</div><!-- /.row -->
</section> <!-- /.content -->
</div><!-- /.content-wrapper -->
<?php require('footer.php'); ?>
<!-- Control Sidebar -->
<?php // require('settingbar.php'); ?>
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div><!-- ./wrapper -->
<!-- jQuery 2.1.4 -->
<script src="../plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- Bootstrap 3.3.5 -->
<script src="../bootstrap/js/bootstrap.min.js"></script>
<!-- Select2 -->
<script src="../plugins/select2/select2.full.min.js"></script>
<!-- InputMask -->
<script src="../plugins/input-mask/jquery.inputmask.js"></script>
<script src="../plugins/input-mask/jquery.inputmask.date.extensions.js"></script>
<script src="../plugins/input-mask/jquery.inputmask.extensions.js"></script>
<!-- date-range-picker -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
<script src="../plugins/daterangepicker/daterangepicker.js"></script>
<!-- bootstrap color picker -->
<script src="../plugins/colorpicker/bootstrap-colorpicker.min.js"></script>
<!-- bootstrap time picker -->
<script src="../plugins/timepicker/bootstrap-timepicker.min.js"></script>
<!-- SlimScroll 1.3.0 -->
<script src="../plugins/slimScroll/jquery.slimscroll.min.js"></script>
<!-- iCheck 1.0.1 -->
<script src="../plugins/iCheck/icheck.min.js"></script>
<!-- FastClick -->
<script src="../plugins/fastclick/fastclick.min.js"></script>
<!-- AdminLTE App -->
<script src="../dist/js/app.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="../dist/js/demo.js"></script>
<script>
$(function () {
//Initialize Select2 Elements
$(".select2").select2();
//Datemask dd/mm/yyyy
$("#datemask").inputmask("dd/mm/yyyy", {"placeholder": "dd/mm/yyyy"});
//Datemask2 mm/dd/yyyy
$("#datemask2").inputmask("mm/dd/yyyy", {"placeholder": "mm/dd/yyyy"});
//Money Euro
$("[data-mask]").inputmask();
//Date range picker
$('#reservation').daterangepicker();
//Date range picker with time picker
$('#reservationtime').daterangepicker({timePicker: true, timePickerIncrement: 30, format: 'MM/DD/YYYY h:mm A'});
//Date range as a button
$('#daterange-btn').daterangepicker(
{
ranges: {
'Today': [moment(), moment()],
'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
'Last 30 Days': [moment().subtract(29, 'days'), moment()],
'This Month': [moment().startOf('month'), moment().endOf('month')],
'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
},
startDate: moment().subtract(29, 'days'),
endDate: moment()
},
function (start, end) {
$('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY'));
}
);
//iCheck for checkbox and radio inputs
$('input[type="checkbox"].minimal, input[type="radio"].minimal').iCheck({
checkboxClass: 'icheckbox_minimal-blue',
radioClass: 'iradio_minimal-blue'
});
//Red color scheme for iCheck
$('input[type="checkbox"].minimal-red, input[type="radio"].minimal-red').iCheck({
checkboxClass: 'icheckbox_minimal-red',
radioClass: 'iradio_minimal-red'
});
//Flat red color scheme for iCheck
$('input[type="checkbox"].flat-red, input[type="radio"].flat-red').iCheck({
checkboxClass: 'icheckbox_flat-green',
radioClass: 'iradio_flat-green'
});
//Colorpicker
$(".my-colorpicker1").colorpicker();
//color picker with addon
$(".my-colorpicker2").colorpicker();
//Timepicker
$(".timepicker").timepicker({
showInputs: false
});
});
</script>
</body>
</html>