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.
 
 
 
 
 
 

19 lines
521 B

<?php
ob_start();
include "header.php";
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
$db_query = "select attach from board where id = '$id'";
$res = mysqli_query($link, $db_query);
if ($row = mysqli_fetch_row($res)) {
header("Location: /wms/".$row[0]);
exit;
} else {
echo "<script type ='text/JavaScript'>";
echo "alert('檔案下載失敗!');";
echo "</script>";
header("Refresh:0; url=board-index.php?function_name=board&".$token_link);
}
ob_end_flush();
?>