2
I have a div
that brings a select
from the bank, but it can only be shown if it meets a condition. It comes like this:
<div id="conteudo" style="display: none;">
If she meets this condition:
if (get('data_do_descredenciamento') != '')
, then the display of div
must change to style="display: show;"
.
How can I set this condition in PHP?
Instead of hiding the div it’s no longer simple nor put her on the way out?
– Bacco