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 5474 to 5479

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 April 2024 19:05 Europe/London time based on the source file dated 17th April 2024 16:25 Europe/London time.