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.
 
 
 
 
 
 

12 lines
297 B

<?php
ob_start();
include "header.php";
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
$db_query = "DELETE FROM expert WHERE id='$id'";
mysqli_query($link, $db_query);
header("Refresh:0; url=expert-index.php?function_name=expert&".$token_link);
ob_end_flush();
?>