Skip to content

Commit

Permalink
🐛 #283
Browse files Browse the repository at this point in the history
  • Loading branch information
bjverde committed Jan 20, 2023
1 parent 98c4a62 commit dd2432c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion appexemplo_v1.0/view/fields/exe_TTextEditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@
$frm->addTextEditorField('fld_texto', 'Descrição:', false, true);

echo 'Valor do Campo: fld_texto =<br>';
echo htmlspecialchars($frm->get('fld_texto'));
$valorCampo = $frm->get('fld_texto');
if( empty($valorCampo) ){
var_dump($valorCampo);
}else{
echo htmlspecialchars($valorCampo);
}

$frm->setAction('POST PAGINA');
$frm->show();

0 comments on commit dd2432c

Please sign in to comment.