if($a=="" and $b=="" or $c=="") {
    echo "something";
}
I want to ask that if $a AND $b is empty then it will print: something. But  if $b is not empty, then it will check the statement like this e.g. if $a is empty AND $c is empty then print: something (Means $a is compulsory to check with the variable which is empty $b OR $c)
 
     
     
     
     
    