On Sat, 4 May 2002, David Jackson wrote:
> Greeting ---
> I was handed a broken form that contain:
> 
> IF (cond):
> 
> .........
> 
> ELSEIF:
> 
> ......
> ENDIF:
> 
> 
> My Questions are:
> 1. Is this type of "IF:" code block valid in PHP4.x.x?

I think it is, but I've never heard of anyone using it. One teensy thing; 
the endif should be followed by a semicolon rather than a colon, as it 
terminates the compound statement.

Of course, most normal people use:

  if (cond) {}
  elseif (cond) {}

and 'endif' is then moot as the scope of the branch is terminated by the 
last closing brace.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to