I have a variable $ name
$nome = str_replace("-"," ",strtolower($arrayReturn['nome']));
And I call it like this:
<p>Nome: (<?php echo $nome; ?>) </p>
It turns out that sometimes this variable does not return value, getting only ().
I would like to include the direct () in $ name and if no value returns the nothing appears.
Can anyone help me?