📁 File Manager
🏠 /
/
home
/
u857492117
/
domains
/
mangaldailawcollege.in
/
public_html
/
law-admin
Dosya Düzenle: save_notice.php
<?php session_start(); if (!isset($_SESSION['admin'])) { header("Location: login.php"); exit; } require 'config/db.php'; /* ----------------------------- Get Form Data ------------------------------ */ $title = trim($_POST['title']); $category = trim($_POST['category']); $description = trim($_POST['description']); $publish_date = $_POST['publish_date']; $status = $_POST['status']; $external_link = trim($_POST['external_link']); /* ----------------------------- Validation ------------------------------ */ if ($title == "" || $description == "") { die("Title and Description are required."); } /* ----------------------------- Upload Image ------------------------------ */ $image = ""; if (!empty($_FILES['image']['name'])) { $allowed = ['jpg','jpeg','png','webp']; $ext = strtolower(pathinfo($_FILES['image']['name'], PATHINFO_EXTENSION)); if (!in_array($ext, $allowed)) { die("Invalid Image Format."); } $image = time() . "_" . uniqid() . "." . $ext; move_uploaded_file( $_FILES['image']['tmp_name'], "uploads/notices/images/" . $image ); } /* ----------------------------- Upload Document ------------------------------ */ $document = ""; if (!empty($_FILES['document']['name'])) { $allowed = ['pdf','doc','docx']; $ext = strtolower(pathinfo($_FILES['document']['name'], PATHINFO_EXTENSION)); if (!in_array($ext, $allowed)) { die("Invalid Document."); } $document = time() . "_" . uniqid() . "." . $ext; move_uploaded_file( $_FILES['document']['tmp_name'], "uploads/notices/documents/" . $document ); } /* ----------------------------- Insert into Database ------------------------------ */ $sql = $conn->prepare(" INSERT INTO notices ( title, category, description, image, document, external_link, status, publish_date ) VALUES ( ?,?,?,?,?,?,?,? ) "); $sql->execute([ $title, $category, $description, $image, $document, $external_link, $status, $publish_date ]); header("Location: notices.php?success=1"); exit; ?>
💾 Kaydet
İptal