Name
filefield
Synopsis
print
$query
->filefield('
name
' [,'
default
',
size
,
maxlength])
Description
Generates a file upload field for Netscape browsers.
- name
The filename to assign the supplied file contents to (required).
- default
The initial value (filename) to place in the text field.
- size
The size of the text field (in characters).
- maxlength
The maximum length of the text field (in characters).
Using named parameters, the syntax is:
print $query->textfield(-name=>'name', -default=>'value', -size=>size, -maxlength=>maxlength, -override=>1, -onChange=>function, -onFocus=>function, -onBlur=>function, -onSelect=>function);
- -override=>1
Text field should not inherit its value from a previous invocation of the script.
- -onChange=>function
Browser should execute
functionwhen the user changes the text field.- -onFocus=>function
Browser should execute
functionwhen the focus is on the text field.- -onBlur=>function
Browser should execute
functionwhen the focus leaves the text field.- -onSelect=>function
Browser should execute
functionwhen the user changes a selected portion of the text field.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access