You appear to be a bot. Output may be restricted
Description
Create a field label
Usage
$string = label( $name, $text );
Parameters
- $name
- ( string ) required – field name
- $text
- ( string ) required – label to display
Returns
string the HTML label tagSource
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 8 of 8
function label( $name, $text ) { $lab = "<label for=\""; $lab.= $name; $lab.= "\">"; $lab.= bw_translate( $text ); $lab.= "</label>"; return( $lab ); }View on GitHub View on Trac