Hi,
I have a problem.
I am using <input type = file> for selecting a file from local directory.
Now, There is also a list box in the form and selecting item from list box , i have to submit and post in the same form.
Afer submit, I want to show all the values which he entered before. But here, problem is the file selected is not displayed.
Now, i used the foll. code :
<input type = file name = "image_url"
value = " <? echo $image_url ?> " >
This is not happening for any of the other fields(which are input type select, text). Even if use echo $image_url seperately and not in value attribute of file input, it shows me the filename which was selected.
Is it that value attribute of file input type doesnot work ??
If this is the problem, then how can i show the selected file after submit.
Thanks in advance.