You appear to be a bot. Output may be restricted
Description
Return a hidden input field for a form
Usage
$string = ihidden( $name, $value );
Parameters
- $name
- ( string ) required – the field name e.g. my_field or my_field[1]
- $value
- ( string ) required – the value of the field
Returns
string an <input type=hidden> tag – returned regardless of the value of the fieldSource
File name: oik-bwtrace/libs/bobbforms.phpLines:
1 to 9 of 9
function ihidden( $name, $value ) { $it = "<input type=\"hidden\" "; $it.= "name=\""; $it.= $name; $it.= "\" value=\""; $it.= $value; $it.= "\" />"; return $it; }View on GitHub View on Trac