From: Maksym Z. <siq...@gm...> - 2020-03-11 17:18:07
|
Hello, I have an html5 form with multiple file input. Command ns_getformfile returns only one tmp file, may be changing it to something like that will be better? proc ns_getformfile {name} { set form [ns_getform] if {[ns_set find $form $name.tmpfile] > -1} { return [ns_querygetall $name.tmpfile] # return [ns_set get $form $name.tmpfile] } } So command will return a list of tmp files |