Server : LiteSpeed System : Linux server551.iseencloud.net 5.14.0-570.33.2.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 14 07:37:35 EDT 2025 x86_64 User : pbkvidya ( 2092) PHP Version : 8.1.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open Directory : /home2/pbkvidya/public_html/pbkv.in/admin/ |
<?php
include_once('connect.php');
session_start();
// Check if the user is logged in
if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) {
echo "<script type='text/javascript'>window.location.href = 'index.php';</script>"; // Redirect to login page
exit();
}
include_once('head.php');
?>
<?php
if(isset($_POST["btnAcademicAdd"])) {
$upload_dir = "../uploads/";
$fields = ['fileImg', 'fileImg1', 'fileImg2', 'fileImg3', 'fileImg4'];
$file_paths = [];
foreach ($fields as $field) {
if (!empty($_FILES[$field]["name"])) {
$filename = basename($_FILES[$field]["name"]);
$tempname = $_FILES[$field]["tmp_name"];
$folder = $upload_dir . $filename;
if (move_uploaded_file($tempname, $folder)) {
$file_paths[] = $folder;
} else {
$file_paths[] = ""; // failed upload
}
} else {
$file_paths[] = ""; // no file selected
}
}
// Insert into database
$sql = mysqli_query($con, "INSERT INTO `tbl_academics`( `fee_structure`, `annual_calendar`, `management_committee`, `pta_members`, `threeyear_result`) VALUES ('{$file_paths[0]}', '{$file_paths[1]}', '{$file_paths[2]}', '{$file_paths[3]}', '{$file_paths[4]}')");
if ($sql) {
echo "<script>alert('Result and Academics Uploaded');</script>";
} else {
echo "<script>alert(' Insertion Failed!');</script>";
}
mysqli_close($con);
}
?>
<head>
<style type="text/css">
textarea{
width: 310px;
height: 110px;
border-radius: var(--bs-border-radius);
}
</style>
</head>
<main id="main" class="main">
<div class="pagetitle">
<!-- <h1>Dashboard</h1> -->
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active">Add Result and Academics</li>
</ol>
</nav>
</div><!-- End Page Title -->
<section class="section">
<div class="row">
<div class="col-lg-1">
</div>
<div class="col-lg-10">
<div class="card">
<div class="card-body">
<div class="row mb-3 bord-bottom">
<div class="col-lg-5"><h5 class="card-title">Add New Result and Academics</h5></div>
<div class="col-lg-5"><h5 class="card-title title-right"><a href="update_academicsresult.php" class="btn btn-secondary">Update Result and Academics</a></h5></div>
</div>
<div class="row mb-3">
</div>
<!-- General Form Elements -->
<form name="Formmandatory" method="post" enctype="multipart/form-data" class="pt-20">
<!-- <div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label">mandatory Title</label>
<div class="col-sm-5">
<textarea id="txtBanTitle" name="txtBanTitle" class="textarea1" ></textarea>
</div>
</div> -->
<div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label"> FEE STRUCTURE OF THE SCHOOL</label>
<div class="col-sm-5">
<input class="form-control" type="file" name="fileImg" id="fileImg" >
</div>
</div>
<div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label">ANNUAL ACADEMIC CALENDER</label>
<div class="col-sm-5">
<input class="form-control" type="file" name="fileImg1" id="fileImg1" >
</div>
</div>
<div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label">LIST OF SCHOOL MANAGEMENT COMMITTEE (SMC)</label>
<div class="col-sm-5">
<input class="form-control" type="file" name="fileImg2" id="fileImg2" >
</div>
</div>
<div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label">LIST OF PARENTS TEACHERS ASSOCIATION (PTA) MEMBERS</label>
<div class="col-sm-5">
<input class="form-control" type="file" name="fileImg3" id="fileImg3" >
</div>
</div>
<div class="row mb-3">
<label for="inputText" class="col-sm-4 col-form-label">LAST THREE-YEAR RESULT OF THE BOARD EXAMINATION AS PER APPLICABILITY</label>
<div class="col-sm-5">
<input class="form-control" type="file" name="fileImg4" id="fileImg4" >
</div>
</div>
<div class="row mb-3 pt-20">
<label class="col-sm-4 col-form-label"></label>
<div class="col-sm-5 ">
<input type="submit" class="btn btn-primary btn-center" name="btnAcademicAdd" id="btnAcademicAdd" value="Submit">
</div>
</div>
</form><!-- End General Form Elements -->
</div>
</div>
</div>
<div class="col-lg-1">
</div>
</div>
</section>
</main><!-- End #main -->
<?php
include_once('footer.php');
?>