PATH:
home2
/
pbkvidya
/
public_html
/
admin
/
Editing: add_plustworesult.php
<?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'); ?> <head> <style type="text/css"> textarea{ width: 270px; height: 100px; border-radius: var(--bs-border-radius); } </style> </head> <?php if(isset($_POST["btnPlusTwoAdd"])) { $year=$_POST['txtYear']; $regstud=$_POST['txtRegStudent']; $passstud=$_POST['txtPassStudent']; $percent=$_POST['txtPercent']; $remarks=$_POST['txtRemarks']; $sql=mysqli_query($con,"INSERT INTO `tbl_plustworesult`(`year`, `registered_student`, `passed_student`, `pass_percentage`, `remarks`) VALUES ('$year','$regstud','$passstud','$percent','$remarks')"); //FOR uploading image from tempname to uploads/packages folder if($sql){ echo "<script>alert('Result Class : XII Added');</script>"; }else{ echo "<script>alert('Failed!!');</script>"; } mysqli_close($con); } ?> <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 Class : XII</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 Class : XII</h5></div> <div class="col-lg-5"><h5 class="card-title title-right"><a href="update_plustworesult.php" class="btn btn-secondary">Update Result Class : XII</a></h5></div> </div> <div class="row mb-3"> </div> <!-- General Form Elements --> <form name="FormTenth" method="post" enctype="multipart/form-data" class="pt-20"> <div class="row mb-3"> <label for="inputText" class="col-sm-4 col-form-label">YEAR</label> <div class="col-sm-5"> <input type="text" id="txtYear" name="txtYear" class="form-control" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-4 col-form-label">NO. OF REGISTERED STUDENTS</label> <div class="col-sm-5"> <input type="text" id="txtRegStudent" name="txtRegStudent" class="form-control" > </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-4 col-form-label">NO. OF STUDENTS PASSED</label> <div class="col-sm-5"> <input type="text" id="txtPassStudent" name="txtPassStudent" class="form-control"> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-4 col-form-label">PASS PERCENTAGE</label> <div class="col-sm-5"> <input type="text" id="txtPercent" name="txtPercent" class="form-control"> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-4 col-form-label">REMARKS</label> <div class="col-sm-5"> <textarea id="txtRemarks" name="txtRemarks" ></textarea> </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="btnPlusTwoAdd" id="btnPlusTwoAdd" 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'); ?>
SAVE
CANCEL