Your IP : 3.137.177.116


Current Path : /home/lentoinv/churchmr.com/user/
Upload File :
Current File : /home/lentoinv/churchmr.com/user/atreport2.php

<?php     session_start(); ob_start();
		error_reporting(0); 
	@ini_set('display_error', 0);    include("../cludes/connect.inc.php");
	
	$page = 2;
	  
	  
$pid = $_SESSION['pid']; 
$pro = $_SESSION['pro'];  
 $wid = $_SESSION['wid'];

	$qur=$db->query("select * FROM datt WHERE ww = '$wid' ORDER BY sn ASC LIMIT 1 " )or die(mysqli_error());  $ru=mysqli_fetch_array($qur);
							$datt = $ru['date'];					
?>


<!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>
           Attendance Report
            
          </h1>
         <ol class="breadcrumb">
            <li><i class="fa fa-dashboard"></i> Setup</li>
            <li class=""> Weekly Report Formats</li>
          </ol>
        </section>

        <!-- Main content -->
        <section class="content"> 

          <div class="row">  
      
      <div class="col-md-12 col-sm-12 col-xs-12">
           <div class="box">
                <div class="box-header">
                  <center> <h3 class="box-title"><strong>DEEPER LIFE BIBLE CHURCH, <?php echo strtoupper($_SESSION['region']); ?> REGION</strong><br>DOCUMENTATION FOR <?php echo strtoupper($pro); ?> <br>WEEK: <?php echo $wid; ?>&nbsp;&nbsp;&nbsp;DATE: <?php echo $datt; ?></h3></center>
                </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></th>
                            <th></th>
                         
                            <th colspan="3">ADULT</th>
                            <th colspan="3">YOUTH</th>
                            
                            <th rowspan="2">SUB <br>TOTAL</th>
                            <th colspan="3">CHILDREN</th>
                            <th rowspan="2">GRAND<br> TOTAL</th>
                            <th colspan="3"></th>
                            
                          </tr>
                          
                          <tr>
                            <th>SN</th>
                            <th>GROUP/DISTRICT</th>
                         
                            <th>M</th>
                            <th>F</th>
                            <th>T</th>
                            <th>B</th>
                            <th>G</th>
                            <th>T</th>
                            
                            <th>B</th>
                            <th>G</th>
                            <th>T</th>
                            <th>VIS</th>
                            <th>CONV</th>
                           
                            
                            
                          </tr>
                    </thead>
                    <tbody>
 <?php $a=1; $que=$db->query("select * FROM zone WHERE rid='$rid' ORDER BY zone ASC " )or die(mysqli_error());
							while($rw=mysqli_fetch_array($que)){
							$zone = $rw['zone'];
							$gid = $rw['sn'];
							$b=$a++; ?>
						<tr>	<th class="center"><?php echo $b ?></th>
                            <th colspan="15"><?php echo strtoupper($rw['zone']); ?></th> </tr>
                            
                            
                            <?php   $i=1;
							$query=$db->query("select * FROM district WHERE gid='$gid' ORDER BY district ASC " )or die(mysqli_error());
							while($row=mysqli_fetch_array($query)){
							$sn = $row['sn'];
							$e=$i++ ;
							$qu=$db->query("select * FROM report WHERE did='$sn' AND pid = '$pid' " )or die(mysqli_error());
							$r=mysqli_fetch_array($qu);
							?>
                          <tr class="odd gradeX">
                            <td class="center"><?php echo $e ?></td>
                            <td><?php echo $row['district']; ?></td>
                           <td><?php echo $r['a1']; ?></td>
                            <td><?php echo $r['a2'] ?></td>
                             <td><?php $ax = $r['a1']+$r['a2']; echo $ax ?></td>
                             
                             <td><?php echo $r['y1']; ?></td>
                            <td><?php echo $r['y2'] ?></td>
                             <td><?php $yx = $r['y1']+$r['y2']; echo $yx ?></td>

                             <td><?php $xx = $ax+$yx; echo $xx ?></td>
                             
                             <td><?php echo $r['c1']; ?></td>
                            <td><?php echo $r['c2'] ?></td>
                             <td><?php $cx = $r['c1']+$r['c2']; echo $cx ?></td>
                             
                             <td><?php $total = $ax+$yx+$cx; echo $total; ?></td>
                           <td><?php echo $r['vis'] ?></td>
                           <td><?php echo $r['conv'] ?></td>
                          
                          </tr> 
							 <?php  } ?>
                             
                              <tr class="odd gradeX">
                           <td></td> <td class="center" colspan=""><strong>SUB-TOTAL</strong></td>
                            
                             <td><strong><?php $ress = $db->query("SELECT SUM(a1) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$a = $rr['value_sum'];   echo number_format($a); ?></strong></td>
<td><strong><?php $ress = $db->query("SELECT SUM(a2) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$b = $rr['value_sum'];   echo number_format($b); ?></strong></td>
<td><strong><?php echo number_format($a+$b); ?></strong></td>

<td><strong><?php $ress = $db->query("SELECT SUM(y1) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$c = $rr['value_sum'];   echo number_format($c); ?></strong></td>
<td><strong><?php $ress = $db->query("SELECT SUM(y2) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$d = $rr['value_sum'];   echo number_format($d); ?></strong></td>
<td><strong><?php echo number_format($c+$d); ?></strong></td>
<td><strong><?php echo number_format($a+$b+$c+$d); ?></strong></td>

<td><strong><?php $ress = $db->query("SELECT SUM(c1) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$e = $rr['value_sum'];   echo number_format($e); ?></strong></td>
<td><strong><?php $ress = $db->query("SELECT SUM(c2) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$f = $rr['value_sum'];   echo number_format($f); ?></strong></td>
<td><strong><?php echo number_format($e+$f); ?></strong></td>
<td><strong><?php echo number_format($a+$b+$c+$d+$e+$f); ?></strong></td>
                            
                           <td><strong><?php $ress = $db->query("SELECT SUM(vis) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$g = $rr['value_sum'];   echo number_format($g); ?></strong></td>
<td><strong><?php $ress = $db->query("SELECT SUM(conv) AS value_sum FROM report WHERE gid='$gid' AND pid = '$pid' "); 
$rr = mysqli_fetch_assoc($ress); 
$h = $rr['value_sum'];   echo number_format($h); ?></strong></td>
                           
                           
                          </tr>
                          <?php  } ?>
                     
                     <tr class="odd gradeX">
                            <th class="center"><?php //echo $e ?></th>
                            <th>GRAND TOTAL</th>
                           <th><?php $result = $db->query("SELECT SUM(a1) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum1 = $row['value_sum']; echo $sum1; ?></th>

<th><?php $result = $db->query("SELECT SUM(a2) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum2 = $row['value_sum']; echo $sum2; ?></th>
                             <th><?php $sum12=$sum1+$sum2; echo $sum12; ?></th>
                             
                             <th><?php $result = $db->query("SELECT SUM(y1) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum3 = $row['value_sum']; echo $sum3; ?></th>

<th><?php $result = $db->query("SELECT SUM(y2) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum4 = $row['value_sum']; echo $sum4; ?></th>
                             <th><?php $sum34=$sum3+$sum4; echo $sum34; ?></th>
                             <th><?php $sum24=$sum12+$sum34; echo $sum24; ?></th>
                             
                             
                             
                             <th><?php $result = $db->query("SELECT SUM(c1) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum5 = $row['value_sum']; echo $sum5; ?></th>

<th><?php $result = $db->query("SELECT SUM(c2) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$sum6 = $row['value_sum']; echo $sum6; ?></th>
                             <th><?php $sum56=$sum5+$sum6; echo $sum56; ?></th>
                             <th><?php $sum123=$sum12+$sum34+$sum56; echo number_format($sum123); ?></th>
                              <th><?php $result = $db->query("SELECT SUM(vis) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$vis = $row['value_sum']; echo $vis; ?></th>
<th><?php $result = $db->query("SELECT SUM(conv) AS value_sum FROM report WHERE rid='$rid' AND pid = '$pid' "); 
$row = mysqli_fetch_assoc($result); 
$conv = $row['value_sum']; echo $conv; ?></th>


                          </tr> 
                          
                    </tbody>
                   
                  </table>
                </div><!-- /.box-body -->
              </div><!-- /.box -->
              </div>        

           
          </div><!-- /.row -->

          <!-- =========================================================== -->


 <?php // 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>

?>