Your IP : 3.147.52.243


Current Path : /home/lentoinv/churchmr.com/report/
Upload File :
Current File : /home/lentoinv/churchmr.com/report/centrereport.php

<?php     session_start(); ob_start();
  include("../cludes/connect.inc.php");

$page='';

$reportadded='';


if(array_key_exists('update', $_POST)){
  $key = $_POST['update'];
	
$pid = $_POST['pid'];

if($_POST['a1']==''){$a1=0;} else{$a1 = $_POST['a1'];}
if($_POST['a2']==''){$a2=0;} else{$a2 = $_POST['a2'];}
if($_POST['y1']==''){$y1=0;} else{$y1 = $_POST['y1'];}
if($_POST['y2']==''){$y2=0;} else{$y2 = $_POST['y2'];}
if($_POST['c1']==''){$c1=0;} else{$c1 = $_POST['c1'];}
if($_POST['c2']==''){$c2=0;} else{$c2 = $_POST['c2'];}
$total = $a1+$a2+$y1+$y2+$c1+$c2;
if($_POST['vis']==''){$vis=0;} else{$vis = $_POST['vis'];}
if($_POST['conv']==''){$conv=0;} else{$conv = $_POST['conv'];}


$com = $_POST['com'];	 

$res2 = $db->query("UPDATE creport SET pid='$pid',a1='$a1',a2='$a2',y1='$y1',y2='$y2',c1='$c1',c2='$c2',total='$total',vis='$vis',conv='$conv',comm='$com' WHERE sn = '$key' ") or die(mysqli_error());

if($res2){

$reportadded="User Data Successfully Updated!";

}

}
			

			
?>


<!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('sidebarx.php');  ?>
      <!-- Content Wrapper. Contains page content -->
      <div class="content-wrapper">
        <!-- Content Header (Page header) -->
        <section class="content-header">
          <h1>
            Attendance Report
            <small> Centre Reports</small>
          </h1>
          <ol class="breadcrumb">
            <li><i class="fa fa-dashboard"></i> <?php echo strtoupper($zone); ?></li>
            <li class=""> <?php echo strtoupper($district); ?></li>
            <li class="active"><?php //echo strtoupper($ro['name']); ?></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">
                  <h3 class="box-title">Attendance Reports</h3>
                </div><!-- /.box-header -->
                <div class="box-body table-responsive">

                       
                  <table id="example1" class="table table-bordered ">
                    <thead>
                         <tr>
                            <th>Centre</th>
                            <th>PR</th>
                            <th>AM</th>
                         <th>AF</th>
                        <th>YM</th> 
                        <th>YF</th> 
                        <th>CM</th> 
                        <th>CF</th> 
                        <th>Total</th> 
                        <th>Con</th> 
                        <th>Vis</th> 
                        <th>Comment</th> 
                            
                          </tr>
                    </thead>
                    <tbody>
 <?php $pid = isset($_POST['program']) ? $_POST['program'] : 0; 
  $i=1;  $a1=0; $a2=0; $y1=0; $y2=0; $c1=0; $c2=0; $vis=0; $conv=0; $total=0;
 $queryx=$db->query("SELECT * FROM creport WHERE did = '$did' AND pid='$pid' ORDER BY cluster ASC " )or die(mysqli_error());
              while($row=mysqli_fetch_array($queryx)){
              $key = isset($_POST['EditCon']) ? $_POST['EditCon'] : '';
             $a1 += $row['a1']; $a2 += $row['a2']; $y1 += $row['y1']; $y2 += $row['y2']; $c1 += $row['c1']; $c2 += $row['c2']; $vis += $row['vis']; $conv += $row['conv']; $total += $row['total'];
              $e=$i++ ;
              ?>
                          <tr class="odd gradeX" style="color: <?php if($key==$row['sn']){echo 'red';} ?>">
                            <td><?php echo sqLx('cluster','sn',$row['cluster'],'name'); ?></td>
                            <td class="center"><?php echo sqLx('sprogram','sn',$row['pid'],'prog'); ?></td>
                            <td><?php echo $row['a1']; ?></td>
                            <td><?php echo $row['a2']; ?></td>
                            <td><?php echo $row['y1']; ?></td>
                            <td><?php echo $row['y2']; ?></td>
                            <td><?php echo $row['c1']; ?></td>
                            <td><?php echo $row['c2']; ?></td>
                            <td><?php echo $row['total']; ?></td>
                            <td><?php echo $row['conv']; ?></td>
                            <td><?php echo $row['vis']; ?></td>
                            <td><?php echo $row['comm']; ?></td>
                    
                   
                          </tr>
                          <?php  } ?>

                            <tr>
                            <td colspan="2">TOTAL</td>
                          
                            <td><?php echo $a1; ?></td>
                            <td><?php echo $a2; ?></td>
                            <td><?php echo $y1; ?></td>
                            <td><?php echo $y2; ?></td>
                            <td><?php echo $c1; ?></td>
                            <td><?php echo $c2; ?></td>
                            <td><?php echo $total; ?></td>
                            <td><?php echo $conv; ?></td>
                            <td><?php echo $vis; ?></td>
                      
                            <td></td>
                          </tr>
                     
                    </tbody>
                   
                  </table>
                  <br>
                  <h4>Registered Converts</h4>
                  <table id="example1" class="table table-bordered ">
                    <thead>
                         <tr>
                            <th>SN</th>
                          
                            <th>Name</th>
                         <th>Phone</th>
                        <th>Address</th> 
                        <th>Gender</th> 
                        <th>Age</th>   
                        <th>Centre</th>

                            
                          </tr>
                    </thead>
                    <tbody>
 <?php $i=1; 
 $queryx=$db->query("SELECT * FROM cdata2 WHERE did = '$did' ORDER BY surname ASC " )or die(mysqli_error());
              while($row=mysqli_fetch_array($queryx)){
              $key = isset($_POST['EditCon']) ? $_POST['EditCon'] : '';
            
              $e=$i++ ;
              ?>
                          <tr class="odd gradeX" style="color: <?php if($key==$row['regno']){echo 'red';} ?>">
                            <td class="center"><?php echo $e ?></td>
                            <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['address']; ?><br><?php echo $row['office']; ?></td>
                     <td><?php echo $row['sex']; ?></td>
                     <td><?php echo $row['age']; ?></td>
                     <td><?php echo sqLx('cluster','sn',$row['cluster'],'name'); ?></td>
                                              </tr>
                          <?php  } ?>
                     
                    </tbody>
                   
                  </table>
          <br><br>
                
        <form method="post">
                   <?php $sql = $db->query("SELECT * FROM sprogram WHERE status=1 ");
                         while ($row=mysqli_fetch_array($sql)) {
                            echo '<button type="submit" name="program" style="margin:10px" value="'.$row['sn'].'" class="btn btn-info">'.$row['prog'].'</button>';
                          } ?>
                </form>
                </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>

?>