ok
Direktori : /home/ngwcolle/public_html/admin/ |
Current File : /home/ngwcolle/public_html/admin/add-calender.php |
<?php session_start(); //DB conncetion include_once('includes/config.php'); if (empty($_SESSION['token'])) { $_SESSION['token'] = bin2hex(random_bytes(32)); $_SESSION["token-expire"] = time() + 3600; // 1 hour = 3600 secs } //validating Session if (strlen($_SESSION['aid'] == 0)) { header('location:logout.php'); } else { if (isset($_POST['submit'])) { if (hash_equals($_SESSION["token"], $_POST["token"])) { $title = strip_tags(strtoupper($_POST['teamname'])); $start = $_POST['startdate']; $end = $_POST['enddate']; $user = strip_tags($_POST['cagenda']); $stmt = $mysqli->prepare("insert into tbl_calender(title,start,end,user) values(?,?,?,?)"); $stmt->bind_param("ssss", $title, $start, $end, $user); $stmt->execute(); // $query = mysqli_query($con, "insert into tbl_calender(title,start,end,user) values('$title','$start','$end','$user')"); if ($stmt) { echo '<script>alert("Event Addeded in calender.")</script>'; unset($_SESSION['token']); unset($_SESSION['token-expire']); echo "<script>window.location.href ='manage-calender.php'</script>"; } else { echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } else { echo '<script>alert("Malicious Data found & submitted. 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> Calender Event 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"> <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">Calender Date Creation</h1> <form method="post" name="adminprofile"> <input type="hidden" name="token" value="<?php echo htmlentities($_SESSION['token']); ?>"> <div class="row"> <div class="col-lg-8"> <!-- Basic Card Example --> <div class="card shadow mb-4"> <div class="card-body"> <div class="form-group"> <label>Calender Event Name/Subject</label> <input type="text" class="form-control" name="teamname" value="" required='true' placeholder="Subject of the Day"> </div> <div class="form-group"> <label>Start Date</label> <input type="date" class="form-control" name="startdate" value="" required='true'> </div> <div class="form-group"> <label>End Date</label> <input type="date" class="form-control" name="enddate" value="" required='true'> </div> <div class="form-group"> <label>Calnder Day Agenda</label> <!-- <input type="text" class="form-control" name="mobilenumber" value="" required='true' maxlength='10'> --> <textarea name="cagenda" id="" cols="30" rows="6" required class="form-control"></textarea> </div> <!-- <div class="form-group"> <label>Team Member (Seprated by Comma)</label> <input type="text" class="form-control" name="teammember" value="" required='true'> </div> --> <div class="form-group"> <input type="submit" class="btn btn-primary btn-user btn-block" name="submit" id="submit" value="Submit"> </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> </body> </html> <?php } ?>