In demo source-files, the variable name and variable value are in all function calls
specified to make the understanding clearer (PHP 7 syntax).
Most variable names is actually redundant and can be omitted.
Furthermore variables that have a default value can be omitted,
if no individual values are subsequently required.
PHP 7 Example:
htm_Input(
# labl:'', plho:'@Enter...', icon:'', hint:'', vrnt: 'text', name:'', valu:'', form:'', wdth:'100%', algn:'left', attr:'', rtrn:false, unit:'', disa:false, rows:'2', step:'', list:[], llgn:'R',bord:'', ftop:''
$labl='@htm_Input(num2)', '', '',
$hint='@Demo of htm_Input',
$vrnt='num2', $name='num2',
$valu='87654321', '', wdth:'120px'
$algn='right'
);
Short form:
htm_Input('@htm_Input(num2)', '', '', '@Demo of htm_Input', 'num2', 'num2', '87654321', '120px', 'right');
PHP 8 Example:
htm_Input(
labl:'@htm_Input(num2)',
hint:'@Demo of htm_Input',
vrnt:'num2', // Input() Variant
name:'num2',
valu:'87654321',
wdth:'120px',
algn:'right'
);
Output in browser: