Mini Kabibi Habibi

Current Path : C:/xampp/htdocs/esuporta/fts/SDO/
Upload File :
Current File : C:/xampp/htdocs/esuporta/fts/SDO/voluntary_edit.php

<?php
include('../database.php');
if(isset($_POST['update'])) {
	 $id = $_POST['id'];
   
  
   $org_name = $_POST['org_name'];
    $start_date = $_POST['start_date'];
    $end_date = $_POST['end_date'];
    $hr = $_POST['hr'];
    $nature = $_POST['nature'];
   

   

	$add_personnel = $conn->prepare("UPDATE voluntary_work SET org_name = ?, start_date = ?, end_date = ?, hr = ?, nature = ?  WHERE id = ?");
	$add_personnel->execute(array($org_name, $start_date, $end_date, $hr, $nature, $id));
	header('location:trainings.php');

}

?>