14 lines
328 B
PHP
14 lines
328 B
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include('includes/functions.php');
|
|
include('log_entry.php');
|
|
|
|
$query = "TRUNCATE TABLE `temporary_vaccination_details`";
|
|
error_log('QUEHJH ' . $query);
|
|
if (!$result = @mysqli_query($conn, $query)) {
|
|
rollback();
|
|
echo json_encode("FAILURE");
|
|
} else {
|
|
echo json_encode("SUCCESS");
|
|
}
|