All results are printed on the screen except when it is 0
and I need the 0
number to be printed. If it is NULL
it satisfies the condition below and correctly prints the hyphen.
if($dados['dado_1']===null){
echo "<td width='11%' style='text-align:center;'><p><br/>-</p></td>";
}else{
echo "<td width='11%' style='text-align:center;><p><br/>".$dados['dado_1']."</p></td>";
}