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 5476 to 5481

Definition

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

This article was last updated 5th May 2024 20:35 Europe/London time based on the source file dated 3rd May 2024 14:45 Europe/London time.