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 : 3.145.65.133
<!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>Course wise statistics</title>
<!-- Favicon-->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="https://universitysolutions.in/bcu/adm/plugins/bootstrap/css/bootstrap_adm.css" rel="stylesheet">
<!-- Waves Effect Css -->
<link href="https://universitysolutions.in/bcu/adm/plugins/node-waves/waves.css" rel="stylesheet" />
<!-- Custom Css -->
<link href="https://universitysolutions.in/bcu/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="https://universitysolutions.in/bcu/adm/css/themes/all-themes.css" rel="stylesheet" />
</head>
<body onload = "getAppDet('All');">
<!-- #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]);
if ($path[1] == "bcu")
$db = "logisys3_bcu";
else if ($path[1] == "bnu")
$db = "logisys3_bnu";
else if ($path[1] == "dud")
$db = "logisys3_dud";
else if ($path[1] == "rcub")
$db = "logisys3_rcu";
else if ($path[1] == "ru")
$db = "logisys3_rur";
$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 fdegree, fdescpn from {$db}.entdeg where fdegree in(select distinct fdegree from {$db}.entseatallot where ifnull(fpaymentstatus,'') = 'success') ";
$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 text-center">
<h2>College wise Course wise statistics</h2>
</div>
<div class="row clearfix body" style='margin-right: 0px;margin-left: 0px;' id="idPerDet">
<div class="field">
<div class="col-md-6">
<b>Select Degree </b>
<div class="form-group p-b-20">
<div>
<select id="fdegree" onchange="getAppDet();" class="form-control" name="Combination">
<!-- <option value="">--Select--</option> -->
<option value="All">All</option>
<?php
echo "<option value='{$row2['fdegree']}'>{$row2['fdegree']}-{$row2['fdescpn']}</option>";
while ($row = mysqli_fetch_assoc($result2)) {
echo "<option value='{$row['fdegree']}'>{$row['fdegree']}-{$row['fdescpn']}</option>";
}
?>
</select>
</div>
</div>
</div>
<!-- <div class="col-md-6">
<b>Select Board</b>
<div class="form-group p-b-20">
<div>
<select id="fboard" onchange="getQpcodesDet()" class="form-control" name="Combination">
<option value="%">All Boards</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="row clearfix body" style='margin-right: 0px;margin-left: 0px;'>
<div class="col-md-6">
<b>Semester</b>
<div class="form-group p-b-20">
<div>
<select id="sem" onchange="getQpcodesDet()" class="form-control" name="Combination">
<option value="">All 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>
</div>
<div class="col-md-6">
<b>Valuation Status</b>
<div class="form-group p-b-20">
<div>
<select id="status" onchange="getQpcodesDet()" class="form-control" name="Combination">
<option value="">All</option>
<option value="Pending">Valuation Pending</option>
<option value="Completed">Valuation Completed</option>
</select>
</div>
</div>
</div> -->
<table class="m-b-12 table table-condensed table-bordered table-striped table-hover" id="appdet">
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://universitysolutions.in/bcu/adm/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap Core Js -->
<script src="https://universitysolutions.in/bcu/adm/plugins/bootstrap/js/bootstrap.js"></script>
<!-- Select Plugin Js -->
<script src="https://universitysolutions.in/bcu/adm/plugins/bootstrap-select/js/bootstrap-select.js"></script>
<!-- Slimscroll Plugin Js -->
<script src="https://universitysolutions.in/bcu/adm/plugins/jquery-slimscroll/jquery.slimscroll.js"></script>
<!-- Waves Effect Plugin Js -->
<script src="https://universitysolutions.in/bcu/adm/plugins/node-waves/waves.js"></script>
<script src="https://universitysolutions.in/bcu/adm/js/MainPageCompressed.js"></script>
<!-- Custom Js -->
<script src="https://universitysolutions.in/bcu/adm/js/admin.js"></script>
<script src="https://universitysolutions.in/bcu/adm/js/login.js"></script>
<!-- Demo Js -->
<script src="https://universitysolutions.in/bcu/adm/js/demo.js"></script>
<script type="text/javascript">
function getAppDet(a) {
var degree ='';
// console.log(degree);
// return;
if(a == 'All'){
degree = a;
}else{
degree = $("#fdegree").val();
}
$.ajax({
type: "POST",
async: false,
data: "°ree=" + degree,
url: "getSeatdet.php",
success: function(responce) {
var apptab = JSON.parse(responce);
// console.log(apptab);
$html = `<tr class='bg-green'>
<th width='10%'><center>Sl. No.</center></th>
<th width='10%'><center>College Code</center></th>
<th width='30%'><center>College Name</center></th>
<th width='10%'><center>Degree Code</center></th>
<th width='30%'><center>Degree Name</center></th>
<th width='10%'><center>Allotted</center></th>
</tr>`;
if(apptab == null){
$html += `<tr>
<td colspan="6"><center>No data Found</center></td>
</tr>`;
}else{
var slno = 1;
var tot_app = 0;
for(let i of apptab){
$html += `<tr>
<td><center>${slno++}</center></td>
<td><center>${i.fcollcode}</center></td>
<td>${i.fcollname}</td>
<td><center>${i.fdegree}</center></td>
<td>${i.fdescpn}</td>
<td style='text-align:center'>${i.cnt}</td>
</tr>`;
// paid += ${i.paid};
// not_paid = not_paid + apptab['not_paid'];
// console.log(i.tot_app);
tot_app += parseInt(i.cnt);
// console.log(apptab['tot_app']);
}
$html += `<tr>
<td colspan='5' style='text-align:center'><b>Total</b></td>
<td style='text-align:center'><b>${tot_app}</td>
</tr>`;
}
$("#appdet").html($html);
}
});
}
// function getBoardDet() {
// var fdeggrp = $("#fdegree").val();
// var sem = $("#sem").val();
// $.ajax({
// type: "POST",
// async: false,
// data: "type=board" + "&fdeggrp=" + fdeggrp + "&sem=" + sem,
// url: "getQPdet.php",
// success: function(responce) {
// var board = JSON.parse(responce);
// var options;
// options += `<option value="%">All Boards</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.
}
?>
|