<?php
session_start();
require "config.php";
if(isset($_SESSION['id']))
{
if(isset($_POST['redsub']))
{
$rid=$_POST['rid'];
$red_name=$_POST['rname'];
$red_birth=$_POST['rbirth'];
$red_sps= mysqli_real_escape_string($db, $_POST['rsps']);
$red_temph=$_POST['rtemph'];
$red_prevacc=$_POST['rprevacc'];
$red_date=$_POST['rdate'];
$ndate;
$red_status=$_POST['rstatus'];
$statusdate=date('Y-m-d');
//Установка следующей даты
switch ($red_prevacc)
{
case 'Значение1':
$dateAt = strtotime(' + 6 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
case 'Значение2':
$dateAt = strtotime(' + 6 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
case 'Значение3':
$dateAt = strtotime(' + 6 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
case 'Значение4':
$dateAt = strtotime(' + 6 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
case 'Значение5':
$dateAt = strtotime(' + 3 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
case 'Значение6':
$dateAt = strtotime(' + 3 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
default:
$dateAt = strtotime(' + 12 months', strtotime($red_date));
$ndate = date('Y-m-d', $dateAt);
break;
}
switch ($red_status) {
case 'Выбыл':
$sql = "INSERT INTO archive SELECT * FROM content WHERE id='$rid';";
$sql .= "DELETE FROM content WHERE id='$rid'; ";
break;
case 'Удален':
$sql .= "DELETE FROM content WHERE id='$rid'; "; ...
break;
case 'Заблокирован':
$sql .= "DELETE FROM content WHERE id='$rid'; "; ...
break;
/* сохранение в БД отредактированных данных*/
default:
$query6 = "UPDATE content SET `name` = '$red_name', `birth` = '$red_birth', `sps` = '$red_sps', `temph` = '$red_temph', `prevacc` = '$red_prevacc', `date` = '$red_date', `next_date` = '$ndate', status = '$red_status', date_status = '$statusdate' WHERE `id` = '$rid'";
if($result1 = mysqli_query($db, $query6))
{
header("Location:".$site_url);
}
else
{
echo "Ошибка: " . mysqli_error($db);
}
break;
}
}
else
{
echo "Некорректные данные";
}
mysqli_close($db);
}
else
{
header("Location:".$site_url);
}
?>