On 12/06/06, Barry <barry@xxxxxxxxxxxxxx> wrote:
Hi everyone! Well i do know that you can write IF as ( ? : ) but what i am asking about is something like this: if (a = 1 OR a = 2) is it anyway possible to write it like: if (a = 1 OR 2) I know this is wrong because "2" will always be true ... Any infos on that would be nice :) Greets Barry
if ((a==1) || (a==2)) { -- http://www.web-buddha.co.uk dynamic web programming from Reigate, Surrey UK (php, mysql, xhtml, css) look out for project karma, our new venture, coming soon!