Im trying to download uploaded file in my database but I cant. Please see the below code.
$filepath = "upload/".$filename;
<table class="main_table" border="1">
<tr class="tb_row">
<?php
while($row = mysql_fetch_array($select)){
?>
<td class="tb_dt"><?php echo $row['position']?></td>
<td class="tb_dt"><?php echo $row['trainings']?></td>
<td class="tb_dt"><?php echo $row['tr_date']?></td>
<td><a href="download.php?name=<?php echo $row['img_path'];?>"> download </a></td>
</tr>
<?php } ?>
</table>