Your IP : 18.119.132.80
<?php session_start(); ob_start();
error_reporting(0);
@ini_set('display_error', 0); include("../cludes/connect.inc.php");
$page = 60;
$today = date('ymd');
if($_POST['item2']){ $_SESSION['item2'] = $_POST['item2'];
}
if($_POST['sn']){ $_SESSION['edit'] = $_POST['sn'];
header('location: #report');
//unset($_SESSION['edit']);
}
$sn=$_SESSION['edit'];
$section = $_SESSION['item2'];
$dd=date('d');
$mm=date('m');
$yy=date('y');
$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;
if(array_key_exists('postt', $_POST)){
$subject = ucwords($_POST['subject']);
$msg = addslashes($_POST['msg']);
$ymd = date('ymdH');
$sql = $db->query("INSERT INTO fup (rec,did,gid,rid,sid,subject,msg,rep)
VALUES('$sn','$did','$gid','$rid','$sid','$subject','$msg','$rep')") or die(mysqli_error());
$sql2 = $db->query("UPDATE mdata SET z='$ymd' WHERE sn = '$sn' ") or die(mysqli_error());
$err ="Prifile Data Successfully Entered!" ;
header('location: #report');
}
$resul = $db->query(" SELECT * FROM mdata WHERE sn = '$sn' ") or die (mysqli_error());
$rr = mysqli_fetch_array($resul);
$section = $rr['section'];
/*
if(!isset($_SESSION['item']) OR $_SESSION['item']==1){
$queryy=$db->query("select * FROM mdata WHERE did = '$did' ORDER BY surname ASC " )or die(mysqli_error()); } else{
$queryy=$db->query("select * FROM mdata WHERE did = '$did' AND section = '$sectionx' ORDER BY surname ASC " )or die(mysqli_error());
}
*/
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Profile Reports</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>
Members Profile Reports
</h1>
<ol class="breadcrumb">
<li><i class="fa fa-dashboard"></i> Setup</li>
<li class=""> <?php echo $ro['reg']; ?></li>
<li class="active"><?php echo $ro['zone']; ?></li>
<li class="active"><?php echo $ro['district']; ?></li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<div class="box">
<div class="box-header">
<h3 class="box-title">PROFILE REPORTS </h3> <div style="float:right"><a href="followupcon.php" class="btn btn-info btn-xs">Converts Report </a></div>
<h3 class="box-title"> </h3>
</div>
<div class="panel-body">
<p>
<form id="myform2" method="post">
<b>SELECT MEMBER</b>
<select name="sn" class="form-control select2" onchange="change2()">
<?php if(!isset($_SESSION['edit'])){ ?> <option selected disabled>SELECT MEMBER</option> <?php }
$queryy=$db->query("select * FROM mdata WHERE did = '$did' ORDER BY surname ASC " )or die(mysqli_error());
while($row=mysqli_fetch_array($queryy)){ ?>
<option value="<?php echo $row['sn'] ; ?>" <?php if($row['sn']==$sn){ echo 'selected' ; } ?>><?php echo $row['surname'].' '.$row['othername'] ; ?></option>
<?php } ?>
</select>
</form>
<script>
function change2(){
document.getElementById("myform2").submit();
}
</script>
</p>
<?php if(isset($_SESSION['edit'])){ ?>
<p>
<?php
$quer=$db->query("select * FROM fup WHERE rec = '$sn' " )or die(mysqli_error());
while($re=mysqli_fetch_array($quer)){
?>
<div class="alert alert-<?php if($re['sn']%2=='1'){echo 'warning'; }else{echo 'info';} ?>" style="text-align:justify">
<b> <?php echo $re['subject']; ?> </b><hr><?php echo $re['msg']; ?><br><em style="float:right"><?php echo $re['created']; ?></em><br></div>
<?php } ?>
</p> <form method="post" enctype="multipart/form-data" id="report" >
<p><font color="green"><?php echo $err; ?></font>
<input name="subject" class="form-control" placeholder="Subject of Report" required >
</p>
<p>
<textarea name="msg" class="form-control" placeholder="Detailed profile report " rows="2" required></textarea>
<font size="-1"> <em>Reports should include problems encountered, counsel given, prayer points, testimonies etc</em></font>
</p>
<p>
<button type="submit" class="btn btn-primary" name="postt" style="float:right">POST REPORT</button>
</p>
</form>
</p>
<?php } ?>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
<?php if(isset($_SESSION['edit'])){ ?>
<div class="col-md-4 col-sm-6 col-xs-12" id="profile">
<div class="box">
<div class="box-header">
<h3 class="box-title"><strong>PROFILE DATA</strong> </h3>
</div>
<div class="panel-body">
<p>
<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($section=='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($section=='Campus' OR $section=='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><a href="fuc.php?con=<?php echo $row['sn']; ?>"><?php echo $row['surname'].' '.$row['othername']; ?> </a> </th></tr>
<?php } } ?>
</table>
<?php $querr=$db->query("select * FROM mdata WHERE surname = '$surname' AND did = '$did' 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><a href="fuc.php?fu=<?php echo $roww['sn']; ?>"><?php echo $roww['surname'].' '.$roww['othername']; ?></a></td>
<td><?php echo $roww['phone']; ?></td>
<td><?php echo $roww['section']; ?></td>
</tr>
<?php }} ?>
</tbody>
</table>
<?php } ?>
</p>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
<?php } ?>
<div class="col-md-4 col-sm-6 col-xs-12" id="profile">
<div class="box">
<div class="box-header">
<h3 class="box-title">PROFILE REPORTS</h3>
</div>
<div class="panel-body">
<div class="table-responsive">
<?php
$query=$db->query("select * FROM mdata WHERE did = '$did' ORDER BY z DESC " )or die(mysqli_error());
while($row=mysqli_fetch_array($query)){
$sn = $row['sn'];
$que=$db->query("select * FROM fup WHERE rec='$sn' " ); $numx = mysqli_num_rows($que); if($numx>0){ ?>
<div class="alert alert-<?php if($row['sex']=='Female'){echo 'danger'; }else{echo 'success';} ?> alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><b> <?php echo $row['surname'].' '.$row['othername'];?> </b><div style="float:right"><?php if($numx>0){echo $numx.' Reports';}?></div></div>
<?php } } ?>
</div>
</div>
</div>
</div>
</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>