SMF - Just Installed!
Can I use the logical OR operator in a while statement? How?I tried like:while(c != \'1\' || c != \'2\'){...}orwhile((c != \'1\')||(c != \'2\')){...}but it doesn\'t work. The weird thing is thatwhile(c != \'1\'){...} it works!