Search found 4 matches

by Jarno
2012-09-21 17:02
Forum: MX File Upload
Topic: File Upload -> Download function
Replies: 7
Views: 69477

Re: File Upload -> Download function

Fred, I am getting steps further now. I only have one problem now, the files are showing but the first file is for the first record and the second for the second record etc. See it here: http://i50.tinypic.com/315xz14.jpg "reactie op dispuut.pdf" must display in the second row. I know it's...
by Jarno
2012-09-21 13:41
Forum: MX File Upload
Topic: File Upload -> Download function
Replies: 7
Views: 69477

Re: File Upload -> Download function

Fred, What i did is create a recordset named "dowload" with the contents nummer (contains the dir name) and pdf (contains the filename). So now i can create links like: <a href="tekeningen/<?php echo $row_download['nummer']; ?>/<?php echo $row_download['pdf']; ?>"><?php echo $row...
by Jarno
2012-09-20 18:29
Forum: MX File Upload
Topic: File Upload -> Download function
Replies: 7
Views: 69477

Re: File Upload -> Download function

Fred, Thanks for your help. I can make a download link to one file with variables. But i cant make it in my dynamic list. I have a link like this: <a href="drawings/<?php echo $row_download['number']; ?>/<?php echo $row_download['pdf']; ?>" target="_blank">here_should_be_the_name...
by Jarno
2012-09-17 14:37
Forum: MX File Upload
Topic: File Upload -> Download function
Replies: 7
Views: 69477

File Upload -> Download function

I want to use the ADDT File Upload -> Download file function in my MySQL database, the uploading is going well, i can upload for example pdf files to a defined variable dir like /dir/{number} and the number is from a fill-in form of my database. But now i want to make a download link to a file in my...