[PHP-DB] File Download - Complete Newbie

2002-10-26 Thread Alex Francis
I am trying to download file stored in a directory on my server. The information and the path to the file are stored in a MySQL database. This information is then displayed in a table. I now need to link to the correct file to download it and hav'nt a clue how to do it. Can someone help or point

Re: [PHP-DB] File Download - Complete Newbie

2002-10-26 Thread Micah Stevens
if you have the following variables: $path = your download directory path, relative to the webserver address. Like http://www.yoursite.com/downloads/;. $file = filename $name = Name or description of file. Just create your table, and in the proper cell, put: echo a href=\$path$file\$name/a;