Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

render_hidden_input()

Description

Render an HTML hidden input

Parameters

ColumnTypeDefaultDescription
$name string Input name
$value string Input value

Location

include/render_functions.php lines 5531 to 5536

Definition

 
function render_hidden_input(string $namestring $value)
    {
    
?>
    <input type="hidden" name=" echo escape($name); ?>" value=" echo escape($value); ?>">
    
    
}

This article was last updated 19th March 2024 03:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.