Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
<?php
require('Common/Header.php');
$enroll_no = $f_s_d['enroll_no'];
$fee = 0;
$date = date('Y-m-d');
$time = date('H:i:s');
$certi_name = "Provisional Degree";
if (isset($_POST['apply'])) {
$check = mysqli_query($conn, "SELECT * FROM `certificatedata` where enroll_no = '$enroll_no' and certi_name = '$certi_name'");
if (mysqli_num_rows($check) == 0) {
$uid = uid_generator();
$insert = "INSERT INTO `certificatedata`(`certi_id`,`enroll_no`, `certi_name`, `date`, `time`, `fee`,`status`)
VALUES ('$uid','$enroll_no','$certi_name','$date','$time','$fee','Pending')";
if (mysqli_query($conn, $insert)) {
SuccessFun('Application Submitted Successfully');
} else {
DangerFun('Application Failed');
}
} else {
DangerFun('Application already submitted');
}
}
// Provisional Degree fee verification
$checkProvisional = mysqli_query($conn, "SELECT * FROM `certificatedata` where enroll_no = '$enroll_no' and certi_name =
'Provisional Degree'");
if (mysqli_num_rows($checkProvisional) > 0) {
$getProfisionalFee = mysqli_fetch_assoc($checkProvisional);
if ($getProfisionalFee['fee'] == 0) {
$Profisional_response = paymentVerification($f_s_d['roll_no'], 'Provisional Degree');
if ($Profisional_response['payment_status'] == 'Success') {
$Profisional_db_colid = $getProfisionalFee['col_id'];
$updateProfisional = "UPDATE `certificatedata` SET `fee`='300' WHERE col_id = '$Profisional_db_colid'";
mysqli_query($conn, $updateProfisional);
}
}
}
?>
<!-- Content Wrapper -->
<!-- ----------Top bar start------------ -->
<!-- ----------Top bar End------------ -->
<!-- Begin Page Content -->
<div class="container-fluid">
<div class="card shadow">
<div class="card-header ">
<h4 class="text-primary font-weight-bold" style="font-size:20px"> Apply for <?php echo $certi_name ?></h4>
</div>
<div class="card-body overflow-auto">
<?php
// check if provision degree applied or not
$checkProvisinol = mysqli_query($conn, "SELECT * FROM `certificatedata` where enroll_no = '$enroll_no' and certi_name = '$certi_name'");
if (mysqli_num_rows($checkProvisinol) == 0) {
?>
<table class="table table-bordered">
<tr>
<th>Full Name</th>
<td><?php echo $f_s_d['full_name'] ?></td>
</tr>
<tr>
<th>Father Name</th>
<td><?php echo $f_s_d['father'] ?></td>
</tr>
<tr>
<th>Mother Name</th>
<td><?php echo $f_s_d['mother'] ?></td>
</tr>
<tr>
<th>Enrollement Number</th>
<td><?php echo $f_s_d['enroll_no'] ?></td>
</tr>
<tr>
<th>Roll Number</th>
<td><?php echo $f_s_d['roll_no'] ?></td>
</tr>
<tr>
<th>Course</th>
<td><?php echo $f_s_d['course'] ?></td>
</tr>
<tr>
<th>Email</th>
<td><?php echo $f_s_d['email'] ?></td>
</tr>
</table>
</div>
<div class="card-footer">
<form method="POST">
<div class="row mb-5">
<div class="col-12 mb-3 text-center">
<button type="submit" name="apply" class="btn btn-info">Apply</button>
</div>
</div>
</form>
</div>
<?php
} else {
$fetchProvisinol = mysqli_fetch_assoc($checkProvisinol);
if ($fetchProvisinol['fee'] == 0) {
DangerFun('Application Fee Pending. ');
?>
<form method="POST" action="https://www.kmcluerp.in/fees-portal/srcadmis/srcadmisdata.php">
<!-- application fee submittion -->
<input type="hidden" name="api_key" value="HASH669SRC">
<input type="hidden" name="roll_number" value="<?php echo $f_s_d['roll_no'] ?>">
<input type="hidden" name="student_name" value="<?php echo $f_s_d['full_name'] ?>">
<input type="hidden" name="course_fee" value="300">
<input type="hidden" name="enrollment_number" value="<?php echo $f_s_d['enroll_no'] ?>">
<input type="hidden" name="fee_type" value="<?php echo $certi_name ?>">
<button type="submit" name="paynow" class="btn btn-info">Pay Now</button>
</form>
<?php
} else {
SuccessFun('Application submitted.');
}
}
?>
</div>
</div>
<?php require('Common/Footer.php') ?>
<script>
window.addEventListener("contextmenu", (function(e) {
e.preventDefault()
}), !1), document.onkeydown = function(e) {
return 123 != event.keyCode && ((!e.ctrlKey || !e.shiftKey || e.keyCode != "I".charCodeAt(0)) && ((!e.ctrlKey || !e.shiftKey || e.keyCode != "C".charCodeAt(0)) && ((!e.ctrlKey || !e.shiftKey || e.keyCode != "J".charCodeAt(0)) && ((!e.ctrlKey || e.keyCode != "U".charCodeAt(0)) && void 0))))
}
</script>
</body>
</html>
