"! > = " wrong
not more the same as?
ex: 4 not more the same as 9

thx's

Recommended Answers

All 3 Replies

Can you state in plain english what is the condition you want to check?

$a = 21;
$b = 25;
$c = 30;

if($a < $b || $a !>= $c ){
     echo "true";
}

if $a > from $c = false

Is this the condition you want to check:

if($a < $b || $a < $c)

or in plain english: if $a is less than $b or $a is not greater or equal to $c?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.