Forum Moderators: coopster
I tried this.
if (empty($var1 ¦¦ $var2)){ print "One of your variables are empty."; exit; }
But that does not work, hwo do others do this?
cheers.
if (empty($var1) ¦¦ empty($var2)){print "One of your variables is empty.";exit;}