hello,
i have a file uploder as my input. saved it in my database. but how do i show the uploaded file on my page? what type of visual element should i use?
hello,
i have a file uploder as my input. saved it in my database. but how do i show the uploaded file on my page? what type of visual element should i use?
What do you want to show? The filename and path or a download button? Or is it an image?
file name. it will be a link to another page showing the file and its downloadable. how do i do that?
I’m assuming you saved the FileUploader value to a FILE field in a database Thing?
In that case, you can use the Link Element, and reference the File in the database. In the example below, I have used the saved File both as target URL and as Caption:
the display that i forward was from a previous page using parameter. should i use get data from url instead?
Yes, you can fetch the filename instead of the full URL, and pass it as a second parameter when you redirect the page. See the example below:
(here I’m saving it to the database instead of redirecting with a page parameter, but the idea is the same):
when i only save the file name does it still save the link of the file or should i create a new field to my database?
This topic was automatically closed after 70 days. New replies are no longer allowed.