ohctech_p8/update_appointment.php
Dushant Mali 899fb3e65a Upgrade 7 to 8
Upgrade 7 to 8
2024-11-02 18:03:13 +05:30

18 lines
387 B
PHP

<?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);
die(mysqli_error($conn));
}
?>