There are no brackets necessary if you only have one line of code to be executed in
the case. For example:
Advertising
if($var == 1)
echo "Var equals 1";
} else {
echo Var does not equal 1";
}
But this is not valid:
if($var == 1)
echo "Var equals ";
echo "1";
} else {
....
}
HTH
Martin
>>> "Alexander Ross" <[EMAIL PROTECTED]> 07/10/02 10:25AM >>>
I know this is correct:
if ($something)
{
...
}
else
{
...
}
But I recently saw someone use this instead:
if($something):
...
else:
...
Is that also correct?? No brackets needed?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php