I am trying to upload the downloaded file to my database, but I cannot. See 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>
source
share