|
passwordBox
Required Parameters: string $field, int $size
Optional Parameters: None
Returns: None
Description: This function generates a HTML form input of type "password" populated by the string in $value. The text appears as asterisks. The box is scalable depending on the $size variable, with a name given by the $field variable. If $label is not null, the labelCell() function will automatically generate a two-column table row around the input.
function passwordBox($field, $size, $value = '', $label = '')
|