Your IP : 3.138.179.120
<?php session_start(); ob_start();
error_reporting(0);
@ini_set('display_error', 0); include("../cludes/connect.inc.php");
$page = 16;
$today = date('ymd');
if($_GET['q']){
$_SEESION['q'] = $_GET['q'];} else{$_SEESION['q'] = 'Please enter name or phone number';}
$search = $_SEESION['q'];
if(array_key_exists('exp', $_POST)){
$_SESSION['edit'] = $_POST['sn'] ;
header("location: searchm.php?q=$search#profile");
}
$sn=$_SESSION['edit'];
$did=$_SESSION['dsn'];
$gid=$_SESSION['gid'];
$dsn= $_SESSION['dsn'];
$query=$db->query("select * FROM district WHERE sn='$dsn' " )or die(mysqli_error());
$ro=mysqli_fetch_array($query);
$district = $ro['district'];
$zone = $ro['zone'];
$dc = $ro['dc'];
$dcphone = $ro['phone'];
$gid = $ro['gid'];
$did = $dsn;
$resul = $db->query(" SELECT * FROM mdata WHERE sn = '$sn' ") or die (mysqli_error());
$rr = mysqli_fetch_array($resul);
$sect = $rr['section'];
$surname = $rr['surname'];
$didd = $rr['did'];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Members Database</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('sidebarx.php'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Search Result
</h1>
<ol class="breadcrumb">
<li><i class="fa fa-dashboard"></i> Search</li>
<li class=""> <?php echo $search; ?></li>
<li class="active"><?php echo $rr['zone']; ?></li>
<li class="active"><?php echo $rr['district']; ?></li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">Serching for: <strong><?php echo $search; ?></strong></h3>
</div><!-- /.box-header -->
<div class="box-body">
<table id="example1" class="table table-bordered ">
<thead>
<tr>
<th>Name</th>
<th>Phone</th>
<th>District</th>
<!--- <th>SECTION</th> --->
<th>Explore</th>
</tr>
</thead>
<tbody>
<?php $i=1;
if($_SESSION['page']==2){ $query=$db->query("select * FROM mdata WHERE (surname regexp '".$search."' OR othername regexp '".$search."' OR phone regexp '".$search."') AND gid='$gid' ORDER BY zone ASC, surname ASC LIMIT 0, 100 " )or die(mysqli_error()); }else{$query=$db->query("select * FROM mdata WHERE (surname regexp '".$search."' OR othername regexp '".$search."' OR phone regexp '".$search."') AND did='$did' ORDER BY zone ASC, surname ASC LIMIT 0, 100 " )or die(mysqli_error());}
while($row=mysqli_fetch_array($query)){
$sn = $row['sn'];
$e=$i++ ;
?>
<tr class="odd gradeX">
<td><?php echo $row['surname'].' '.$row['othername']; ?></td>
<td><a href="tel:<?php echo $row['phone']; ?>"><?php echo $row['phone']; ?></a>
</td>
<td><?php echo $row['district']; ?>, <?php echo $row['zone']; ?></td>
<td><form method="post" >
<input name="sn" type="hidden" value="<?php echo $row['sn']; ?>">
<button type="submit" class="btn btn-primary btn-xs" name="exp">Exp <?php echo substr($row['section'],0,2); ?></button>
</form></td>
</tr>
<?php } ?>
</tbody>
</table>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div>
<?php if(isset($_SESSION['edit'])){ ?>
<div class="col-md-4 col-sm-12 col-xs-12" id="profile">
<div class="box">
<div class="box-header">
<h3 class="box-title">PROFILE: <strong><?php echo $rr['surname'].' '.$rr['othername']; ?></strong> </h3>
</div>
<div class="panel-body">
<table width="100%" id="example1" class="table table-bordered "><tr>
<td>Section</td><td><?php echo $rr['section']; ?></td></tr><tr>
<td>Name</td><th><?php echo $rr['surname'].' '.$rr['othername']; ?></th></tr><tr>
<td>Gender</td><th><?php echo $rr['sex']; ?></th></tr><tr>
<td>Phone Number</td><th><a href="tel:<?php echo $rr['phone']; ?>"><?php echo $rr['phone']; ?></a><a style="float:right" href="sms:<?php echo $rr['phone']; ?>">SMS</a></th></tr><tr>
<td>E-mail</td><th><a href="mailto:<?php echo $rr['email']; ?>"><?php echo $rr['email']; ?></a></th></tr>
<tr><td>Age Group</td><th><?php echo $rr['age']; ?></th></tr>
<tr><td>Residential Address</td><th><?php echo $rr['address']; ?></th></tr>
<tr><td>Office Address</td><th><?php echo $rr['office']; ?></th></tr>
<?php if($sect=='Campus'){ ?>
<tr><td>Level</td><th><?php echo $rr['class']; ?></th></tr>
<tr><td>Institution</td><th><?php echo $rr['school']; ?></th></tr>
<?php } ?>
<?php if($sect=='Campus' OR $sect=='Adult'){ ?>
<tr><td>Marital Status</td><th><?php echo $rr['marital']; ?></th></tr>
<tr><td>Occupation</td><th><?php echo $rr['occ']; ?></th></tr>
<tr><td>Academic Discipline</td><th><?php echo $rr['dept']; ?></th></tr>
<tr><td>Highest Qualification</td><th><?php echo $rr['hq']; ?></th></tr>
<tr><td>Join the Church in</td><th><?php echo $rr['yjoin']; ?></th></tr>
<?php } else{ ?>
<tr><td>Class</td><th><?php echo $rr['class']; ?></th></tr>
<tr><td>School</td><th><?php echo $rr['school']; ?></th></tr>
<?php } ?>
<?php if($rr['work']==1){ ?>
<tr><th colspan="2">WORKER</th></tr>
<tr><td>Designation</td><th><?php echo $rr['port']; ?></th></tr>
<tr><td>Area of Work</td><th><?php echo $rr['aow']; ?></th></tr>
<tr><td>Leader?</td><th><?php echo $rr['x']; ?></th></tr>
<?php } ?>
<?php $i=1; $resultt = $db->query(" SELECT * FROM cdata WHERE fu = '$sn' ") or die (mysqli_error());
$num = mysqli_num_rows($resultt);
if($num>0){?>
<tr><th colspan="2">CONVERTS</th></tr>
<?php while($row=mysqli_fetch_array($resultt)){ $e=$i++; ?>
<tr><td><?php echo $e; ?></td><th><?php echo $row['surname'].' '.$row['othername']; ?> </th></tr>
<?php } } ?>
</table>
<?php } ?>
<?php $querr=$db->query("select * FROM mdata WHERE surname = '$surname' AND did = '$didd' AND sn != '$sn' ORDER BY surname ASC "); $count = mysqli_num_rows($querr); if(isset($_SESSION['edit']) && $count>0){ ?>
<b>Likely Family Members</b>
<table id="example1" class="table table-bordered ">
<thead>
<tr>
<th>Name</th>
<th>Phone</th>
<!--- <th>SECTION</th> --->
<th>Section</th>
</tr>
</thead>
<tbody>
<?php $i=1;
while($roww=mysqli_fetch_array($querr)){
//$sn = $roww['sn'];
$e=$i++ ;
if($sn != $roww['sn']){
?>
<tr class="odd gradeX">
<td><?php echo $roww['surname'].' '.$roww['othername']; ?></td>
<td><?php echo $roww['phone']; ?></td>
<td><?php echo $roww['section']; ?></td>
</tr>
<?php }} ?>
</tbody>
</table>
</p>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
<?php } ?>
</div><!-- /.row -->
<!-- =========================================================== -->
</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>