This commit is contained in:
sparkyx 2022-11-27 17:03:15 +01:00
parent 789f073f5d
commit be0de15511
4 changed files with 37 additions and 13 deletions

View file

@ -221,6 +221,12 @@ class HtmlInput
{
if ($p_id=="")
$p_id=$p_name;
if ( DEBUGNOALYSS > 2) {
return '<span style="font-size:80%;color:blue;background-color:lightgoldenrodyellow">'.
$p_id .
'= <INPUT TYPE="text" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'" style="color:blue;font-size:80%">'.
'</span>';
}else
return '<INPUT TYPE="hidden" id="'.strip_tags($p_id).'" NAME="'.$p_name.'" VALUE="'.strip_tags($p_value).'">';
}