Forums

Save URL file upload

Yudhizth 15 Jun, 2015
Dear all,

How to save url of file upload? Right now, it only save name of the file. I have no idea with this πŸ˜‘

Thanks
GreyHead 17 Jun, 2015
Hi Yudhizth,

After the Upload Files action the URL is in $form->files['input_name']['link'] (add a debugger to see the correct values). You can copy this into the $form->data array to save it to the database
<?php
$form->data['file_url'] = $form->files['input_name']['link'];
?>

But you don't need to know that, you can always rebuild the URL from the file name.

Bob
Yudhizth 19 Jun, 2015
Thanks Bob. It WorksπŸ™‚
This topic is locked and no more replies can be posted.