in reply to Form File Field
Most browsers do not allow default values in File fields for security reasons.
Also, you can use alternate quoting methods so that you don't have to escape the double quotes.
Here are just two examples:
Clayton --$field = qq{<input type="file" name="pic" value="$fields[2]">}; or $field = "<input type='file' name='pic' value='$fields[2]'>";
|
|---|