Hello friends !!! help me figure out once and for all with this record, I am still very confused, thank you in advance.
What does the record if($var) { echo "Hello"; } if($var) { echo "Hello"; }
Or write if(!empty($var)) { echo "Hello"; } if(!empty($var)) { echo "Hello"; }
I understand for example the record
if(!empty($var) == TRUE) { echo "Hello"; } else { echo "Bye bye"; } explain the difference and how it works? And where in the short record else use? Thank!
