
if(( now > dawn_of_time ) && ( location == UK )) pants = underwear;
( ,
Sun 14 Apr 2002, 18:35,
archived)

if (( now > dawn_of_time ) && ( location == UK ) && ( name <> "Darren Wolfe") pants = underwear
else if (( now > dawn_of_time ) && ( location == UK ) && ( name = "Darren Wolfe") pants.usage.confusion = yes;
( ,
Sun 14 Apr 2002, 18:42,
archived)
else if (( now > dawn_of_time ) && ( location == UK ) && ( name = "Darren Wolfe") pants.usage.confusion = yes;


You've missed some brackets, and used the BASIC non-equals operator in a C program. I think you really meant:
if(( now > dawn_of_time ) && ( location == UK ))
{
if( name != "Darren Wolfe" ) pants = underwear; else pants.usage.confusion = yes;
}

i thought it was javascript you were writing in :)
I get so confused over programing syntax these days - too may languages around...
asp, vb, delphi, c++, java, javascript, php..
( ,
Sun 14 Apr 2002, 19:09,
archived)
I get so confused over programing syntax these days - too may languages around...
asp, vb, delphi, c++, java, javascript, php..