14 lines
387 B
PHP
14 lines
387 B
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include('log_entry.php');
|
|
$problem_id= $_POST['problem_id'];
|
|
$remission_date= $_POST['remission_date'];
|
|
|
|
$query = "update problem_response_details set remission_date = '$remission_date' where vid = '$problem_id'";
|
|
error_log("update problem".$query);
|
|
|
|
|
|
if (!$result = @mysqli_query($conn,$query)) {
|
|
exit(mysqli_error($conn));
|
|
}
|
|
?>
|