elseif($infosPreenchidosInputsVazios)
{
echo ("PLEASE, SHOW YOURSELF");
}
But this echo doesn’t appear.
Could this be because somehow, the previous if before this elseif evaluates to true, hence this one, despite been logical correct never executes?
So there is a condition test missing from the first if. The easiest fix is to reverse the order and make the elseif into the if and have the if as the elseif
I end up changing a little here and there, due to the fact that I wanted to have, on the first if, something that will normally arrive. And on the later, something that doesn’t arrive so often. (proud newbie).
Need to better think the logic behind. It should never run the first if on those circumstances. It seems that I do have a too wide formula that works for both, and I need to logically narrow it.