ohctech_p8/update_appointment.php

18 lines
387 B
PHP
Raw Normal View History

2024-10-16 19:18:52 +05:30
<?php
include('includes/config/config.php');
include ('log_entry.php');
include ('includes/functions.php');
$query="update employee_appointment set appointment_type='O' where appointment_id='".$_POST['appoint']."'";
if (!$result = @mysqli_query($conn,$query)) {
error_log("Error updating case".mysqli_error($conn).". Error Query:".$query);
2024-11-02 18:03:13 +05:30
die(mysqli_error($conn));
2024-10-16 19:18:52 +05:30
}
?>