Hi all,
I'm not quite a newbie in PHP, but I have a feeling this question is, so here we go.
I have a script that uses an if statement with multiple options. Looks like this:
if ($suma - sumb => 1 && $suma-sumb <= 149)
{
code
}
Everytime I reach this part of the script I end up with a parse error in that line.
I also tried the following variant:
if (($suma - sumb) => 1 && ($suma-sumb <= 149))
{
code
}
Is there a very special way PHP wants a && in an if statement?
Thanks in advance,
Azmir