Name
filefield
Synopsis
$query->filefield('name' [,'default',size,maxlength])
Generates a file upload field for Netscape browsers.
nameThe filename to assign the supplied file contents to (required)
defaultThe initial value (filename) to place in the text field
sizeThe size of the text field (in characters)
maxlengthThe 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=>1Text field should not inherit its value from a previous invocation of the script
-onChange=>functionBrowser should execute
functionwhen the user changes the text field-onFocus=>functionBrowser should execute
functionwhen the focus is on the text field-onBlur=>functionBrowser should execute
functionwhen the focus leaves the text field-onSelect=>functionBrowser should execute
functionwhen the user changes a selected portion of the text field