从目标路径检索上载的文件

I'm currently hooked on making my basic upload and download web app. I was able to push and upload file from the target '$path' and tagging 'md5', but I'm not sure how to retrieve it back via download link or some sort.

(Pardon my coding, I'm still learning) I've saved the file to target $path by:

<?php
include("connection.php");

if (isset($_POST['submit']))
{

$name = mysqli_real_escape_string($conn, $_POST['name']);
$description = mysqli_real_escape_string($conn, $_POST['description']);

if ($name == '' || $description == '' )
{

$error = 'ERROR: Please fill required fields!';

renderForm($name, $description);
}
else
{

if(isset($_FILES['filefield'])){
$file=$_FILES['filefield'];
$upload_directory='uploads/';
$ext_str = "gif,jpg,jpeg,mp3,tiff,bmp,doc,docx,ppt,pptx,txt,pdf";
$allowed_extensions=explode(',',$ext_str);
$max_file_size = 2097152;
$ext = substr($file['name'], strrpos($file['name'], '.') + 1);
if (!in_array($ext, $allowed_extensions) )
{

echo '<script language="javascript">';
echo 'alert("only gif,jpg,jpeg,png,mp4,tiff,bmp,doc,docx,ppt,pptx,txt,pdf files allowed to upload")';
echo '</script>';
exit(); 
}

$path=md5(microtime()).'.'.$ext;

if(move_uploaded_file($file['tmp_name'],$upload_directory.$path)){

    $filefield = $_FILES["filefield"]["name"];
    $path = $path."/".$filefield;
$query = "INSERT INTO `item`(`name`, `description`, `path`) VALUES ('$name','$description','$path')";
$result = mysqli_query($conn, $query);
 if($result)
    {
    echo '<script language="javascript">';
    echo 'alert("Item created!")';
    echo '</script>';      
    exit();
}   
}
}
}
}
?>

I've setup a table to echo its contents (name, description, path) and also a button to view each row with respect to its link 'id':

<?php
function renderForm($id, $name, $description, $path, $error)
{
?>
<html>
<body>
<div style="background-color:lightblue">
<strong>Name: </strong><?php echo $name; ?><br/>          
<strong>Description: </strong><?php echo $description; ?><br/>

<strong>Attachment: </strong><?php echo $path; ?><br/> <!--how to download?-->

</div>
</body>
</html>

<?php
include("connection.php");

$id = $_GET['id'];
$result = mysqli_query($conn, "SELECT * FROM order.item WHERE id=$id")
or die(mysqli_error());
$row = mysqli_fetch_array($result);

if($row)
{
$name = $row['name'];
$description = $row['description'];
$path = $row['path'];

renderForm($id, $name, $description, $path, '');
}
?>

DB: order ; Table: item enter image description here

How can I make it clickable to download? or any other way to achieve downloading/retrieving it? Appreciated the help guys!

</div>