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 27th April 2024 09:35 Europe/London time based on the source file dated 25th April 2024 16:15 Europe/London time.