Collections functions
General 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 5536 to 5542

Definition

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

This article was last updated 8th December 2023 03:05 Europe/London time based on the source file dated 29th November 2023 14:55 Europe/London time.