0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.119.132.80


Current Path : /proc/thread-self/root/var/www/html/gug/
Upload File :
Current File : //proc/thread-self/root/var/www/html/gug/valdet.php

<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <title>Script Statistics</title>
    <!-- Favicon-->
    <link rel="icon" href="favicon.ico" type="image/x-icon">
    <link href="adm/plugins/bootstrap/css/bootstrap_adm.css" rel="stylesheet">

    <!-- Waves Effect Css -->
    <link href="adm/plugins/node-waves/waves.css" rel="stylesheet" />

    <!-- Custom Css -->
    <link href="adm/css/style_adm.css" rel="stylesheet">
    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
    <link href="adm/css/themes/all-themes.css" rel="stylesheet" />
    
</head>

<body>
    <!-- #END# Page Loader -->
    <!-- Top Bar -->
    
<?php

include("/var/www/config.php");

    // $servername = "logisys.cluster-cv9maxyrxjgg.ap-south-1.rds.amazonaws.com";
    // $username   = "admin";
    // $password  = "Logisys2104";

     $servername = SERVERNAME;
    $username   = USERNAME;
    $password  = PASSWORD;

$conn = new  mysqli($servername,$username,$password);
if(!$conn) 
{
    die("Connection failed: " . mysqli_connect_error());
}
// echo "<br/><br/><br/><br/>";
$url = $_SERVER['REQUEST_URI'];
$path = explode("/",$url);

// var_dump($path[1]);
  $db = "logisys3_gug";
  
$Query = "select fboardcode, fboardname, 
funivcode, funivname, date_format(now(), '%d/%m/%Y %r') as fdate
FROM {$db}.masboard, {$db}.control c order by fboardcode";
$result = mysqli_query($conn, $Query);
$row = mysqli_fetch_assoc($result);

$Query2 = "select distinct fdeggrp from {$db}.masqp where ifnull(fdeggrp,'') <> '' and fdeggrp <> ''";
$result2 = mysqli_query($conn, $Query2);
$row2 = mysqli_fetch_assoc($result2);

?>

<nav class="navbar" style="background-color: #1ba0c7;">
    <div class="container-fluid" style="color: #fff;">
        <div class="col-md-12 m-t--5">
            <center>
              <h2 class="brand" style="margin-left: 50px;"><?php echo $row['funivname'] ?></h2>
          </center>
        </div>
    </div>
</nav>

<section class="content">
  <div class="container-fluid">
    <div class="tab-content" id="loadtab">
      <!--///////Personal Details Card\\\\\\\-->
      <div class="row clearfix" id = "personal_det">
        <div class="col-lg-10 col-md-12 col-sm-12 col-xs-12">
          <div class="card ">
            <div class="header bg-blue">
              <h2>Script Statistics (This report is being provided on a pilot basis)</h2>
            </div>
            <div class="row clearfix  body" id="idPerDet">
              <div class="field">
                <div class="col-md-5">
                  <b>Select  Degree Group</b>
                  <div class="form-group p-b-20">
                    <div>
                      <select id="fdeggrp" onchange="getBoardDet()"  class="form-control" name="Combination">
                        <option value="">--Select--</option>
                        <?php
                          echo "<option value='{$row2['fdeggrp']}'>{$row2['fdeggrp']}</option>";
                          while ($row = mysqli_fetch_assoc($result2)) {
                            echo "<option value='{$row['fdeggrp']}'>{$row['fdeggrp']}</option>";
                          }
                        ?>
                      </select>
                    </div>
                  </div>
              </div>
                <div class="col-md-5">
                  <b>Select  Board</b>
                  <div class="form-group p-b-20">
                    <div>
                      <select id="fboard" onchange="getQpcodesDet()" class="form-control" name="Combination">
                        <option value="">--Select--</option>
                        <?php
                          /*echo "<option value='{$row['fboardcode']}'>{$row['fboardcode']} - {$row['fboardname']}</option>";
                          while ($row = mysqli_fetch_assoc($result)) {
                            echo "<option value='{$row['fboardcode']}'>{$row['fboardcode']} - {$row['fboardname']}</option>";
                          }*/
                        ?>
                      </select>
                    </div>
                  </div>
              </div>
              <div class="col-md-5">
                  <b>Select  Exam</b>
                  <div class="form-group p-b-20">
                    <div>
                      <select id="sem" onchange="getQpcodesDet()" class="form-control" name="Combination">
                        <option value="all">All</option>
                        <option value="a">1st Sem</option>
                        <option value="b">2st Sem</option>
                        <option value="c">3rd Sem</option>
                        <option value="d">4th Sem</option>
                        <option value="e">5th Sem</option>
                        <option value="f">6th Sem</option>
                        <option value="g">7th Sem</option>
                        <option value="h">8th Sem</option>
                        <option value="i">9th Sem</option>
                        <option value="j">10th Sem</option>
                      </select>
                    </div>
                  </div>
              </div>
               

              <table class="m-b-20 table table-condensed table-bordered table-striped table-hover" id="boarddet">
              </table>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
</div>
</section>

    <script src="adm/plugins/jquery/jquery.min.js"></script>

    <!-- Bootstrap Core Js -->
    <script src="adm/plugins/bootstrap/js/bootstrap.js"></script>

    <!-- Select Plugin Js -->
    <script src="adm/plugins/bootstrap-select/js/bootstrap-select.js"></script>

    <!-- Slimscroll Plugin Js -->
    <script src="adm/plugins/jquery-slimscroll/jquery.slimscroll.js"></script>

    <!-- Waves Effect Plugin Js -->
    <script src="adm/plugins/node-waves/waves.js"></script>

     <script src="adm/js/MainPageCompressed.js"></script>
    <!-- Custom Js -->
    <script src="adm/js/admin.js"></script>
    <script src="adm/js/login.js"></script>
    <!-- Demo Js -->
    <script src="adm/js/demo.js"></script>

    <script type="text/javascript">
      function getQpcodesDet()
      {
        var board = $("#fboard").val();
        var fdeggrp = $("#fdeggrp").val();
        var sem = $("#sem").val();
        $.ajax({
          type: "POST",
          async: false,
          data: "fboard="+board+"&fdeggrp="+fdeggrp+"&type=valdet"+"&sem="+sem,
          url: "getQPdet.php",
          success: function(responce)
          {
            console.log(responce);
            $("#boarddet").html(responce);
          }
        });
      }

      function getBoardDet()
      {
        var fdeggrp = $("#fdeggrp").val();
        $.ajax({
          type: "POST",
          async: false,
          data: "type=board"+"&fdeggrp="+fdeggrp,
          url: "getQPdet.php",
          success: function(responce)
          {
            var board = JSON.parse(responce);
              var options;
              options +=`<option value="all">All</option>`;
            for(var i = 0; i< board.length; i++)
            {
                options += `<option value="${board[i].fboardcode}">${board[i].fboardcode} - ${board[i].fboardname}</options>`;
            }
            
            $("#fboard").html(options);  

          
          }
        });
      }

      

    </script>

</body>
</html>

<?php

function moneyFormatIndia($num) {
    $explrestunits = "" ;
    if(strlen($num)>3) {
        $lastthree = substr($num, strlen($num)-3, strlen($num));
        $restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
        $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
        $expunit = str_split($restunits, 2);
        for($i=0; $i<sizeof($expunit); $i++) {
            // creates each of the 2's group and adds a comma to the end
            if($i==0) {
                $explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
            } else {
                $explrestunits .= $expunit[$i].",";
            }
        }
        $thecash = $explrestunits.$lastthree;
    } else {
        $thecash = $num;
    }
    return $thecash; // writes the final format where $currency is the currency symbol.
}

?>