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

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