how to use uploader dynamically

hi,
In my page,I am having an uploader and button.
when user selects upload, the file has to upload (one or more files).
and click on the button,I want to save it in the database.
can u provide a sample project that implements this .

Thanks,
charan

hi

samples here dhtmlx.com/docs/products/dht … _uploader/
docs here docs.dhtmlx.com/doku.php?id=dhtm … orm_upload

common principles
user select files, upload them (select more files, upload more files…)
files stored on server side, php (jsp, asp) return status for each file, success or not and id (name)
based on this status myForm.getItemValue() or myForm.getFormData() will return ids for uploaded files

something like

hi,
I am able to save the selected file in database,but when I am clicking “upload” button,
selected file is displaying in red color with “0%”.It is not showing displaying progress of “100%”.
I have implemented like,


then something wrong with paths.
what you see on title screen when open uploader?

hi
just append this line at server side code at the end of upload code.
print_r("{state: true}");

that is in this file: /Home/AddFile", (//saving url in my controller)
hope this will help you.
thanks

correct
btw our documentation contain details regarding responses and server side demo also confiruged