PATH:
home2
/
pbkvidya
/
public_html
/
admin
/
Editing: add_mandatory.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'); ?> <?php if(isset($_POST["btnBannerAdd"])) { // $bantitle=$_POST['txtBanTitle']; $filename = $_FILES["fileImg"]["name"]; $tempname = $_FILES["fileImg"]["tmp_name"]; $folder = "uploads/banners/".$filename; $sql=mysqli_query($con,"INSERT INTO tbl_banners (banner_title, banner_image) values('$bantitle', '$folder')"); //FOR uploading image from tempname to uploads/banners folder if (move_uploaded_file($tempname, $folder)) { $msg = "Image uploaded successfully"; if($sql){ echo "<script>alert('Banner Added');</script>"; } else{ echo "<script>alert('Insertion Failed!');</script>"; } }else{ echo "<script>alert('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 Banner</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 Banner</h5></div> <div class="col-lg-5"><h5 class="card-title title-right"><a href="view_banners.php" class="btn btn-secondary">View All Banners</a></h5></div> </div> <div class="row mb-3"> </div> <!-- General Form Elements --> <form name="FormBanner" method="post" enctype="multipart/form-data" class="pt-20"> <!-- <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">Banner Title</label> <div class="col-sm-5"> <textarea id="txtBanTitle" name="txtBanTitle" class="textarea1" required=""></textarea> </div> </div> --> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPIES OF AFFILIATION/UPGRADATION LETTER AND RECENT EXTENSION OF AFFILIATION</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPIES OF SOCIETIES/TRUST/COMPANY REGISTRATION/RENEWAL CERTIFICATE</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPY OF NO OBJECTION CERTIFICATE (NOC) ISSUED, IF APPLICABLE, BY THE STATE GOVT./UT</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPIES OF RECOGNITION CERTIFICATE UNDER RTE ACT, 2009, AND IT'S RENEWAL IF APPLICABLE</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPY OF VALID BUILDING SAFETY CERTIFICATE AS PER THE NATIONAL BUILDING CODE</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPY OF VALID FIRE SAFETY CERTIFICATE ISSUED BY THE COMPETENT AUTHORITY</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPY OF THE SELF CERTIFICATION SUBMITTED BY THE SCHOOL FOR AFFILIATION/UPGRADATION/EXTENSION OF AFFILIATION*</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3"> <label for="inputText" class="col-sm-3 col-form-label">COPIES OF VALID WATER, HEALTH AND SANITATION CERTIFICATES</label> <div class="col-sm-5"> <input class="form-control" type="file" name="fileImg" id="fileImg" required=""> </div> </div> <div class="row mb-3 pt-20"> <label class="col-sm-3 col-form-label"></label> <div class="col-sm-5 "> <input type="submit" class="btn btn-primary btn-center" name="btnBannerAdd" id="btnBannerAdd" 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