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.220.196.68
Current Path : /var/www/html/mum/ |
| Current File : /var/www/html/mum/subqp.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>Board wise QP List</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
$servername = "97.74.228.93";
$username = "logisys3_logu";
$password = "Logisys@2106";
$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]);
if($path[1] == "bcu")
$db = "logisys3_bcu";
else if($path[1] == "bnu")
$db = "logisys3_bnu";
else if($path[1] == "dud")
$db = "logisys3_dud";
$db = "logisys3_bcu";
$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}.submasqp 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>Board wise QP List</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>
<b>Select Semester</b>
<div class="form-group p-b-20">
<div>
<select id="fexamno" class="form-control" name="Combination">
<option value="">--Select--</option>
<option value="ALL">ALL Semesters</option>
<option value="ODD">ODD Semesters</option>
<option value="EVEN">EVEN Semesters</option>
<option value="A">I Semester</option>
<option value="B">II Semester</option>
<option value="C">III Semester</option>
<option value="D">IV Semester</option>
<option value="E">V Semester</option>
<option value="F">VI Semester</option>
</select>
</div>
</div>
<b>Select Board</b>
<div class="form-group p-b-20">
<div>
<select id="fboard" class="form-control" name="Combination">
<option value="">--Select--</option>
</select>
</div>
</div>
<button type="button" class="btn btn-primary waves-effect" onclick = "getQpcodesDet()">Submit</button>
</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 fexamno = $("#fexamno").val();
if(fdeggrp == '')
{
alert("Select Degree Group");
$("#fdeggrp").focus();
return;
}
if(fexamno == '')
{
alert("Select Semester");
$("#fexamno").focus();
return;
}
if(board == '')
{
alert("Select Board");
$("#fboard").focus();
return;
}
$.ajax({
type: "POST",
async: false,
data: "fboard="+board+"&fdeggrp="+fdeggrp+"&type=valdet"+"&fexamno="+fexamno,
url: "getsubqpdet.php",
success: function(responce)
{
$("#boarddet").html(responce);
}
});
}
function getBoardDet()
{
var fdeggrp = $("#fdeggrp").val();
$.ajax({
type: "POST",
async: false,
data: "type=board"+"&fdeggrp="+fdeggrp,
url: "getsubqpdet.php",
success: function(responce)
{
var board = JSON.parse(responce);
var options = "";
options +=`<option value="">--Select--</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.
}
?>
|