You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
462 B
14 lines
462 B
<?php
|
|
ob_start();
|
|
include "../header.php";
|
|
|
|
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
|
|
|
|
$create_at = date("Y-m-d H:i:s");
|
|
|
|
$db_query = "update pricereview_main set status = 'D', creater = '$user_id', create_at = '$create_at' where id = '$id' and status = 'Y1'";
|
|
$rs = mysqli_query($link, $db_query);
|
|
|
|
header("Refresh:0; url=pricereview_renovate-index.php?function_name=pricereview_renovate&".$token_link);
|
|
ob_end_flush();
|
|
?>
|