On Sunday 05 May 2002 04:20, Miguel Cruz wrote: > 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.
That alternative syntax is good for when doing conditional HTML loops. For example, for me, the following looks odd and untidy: if (something) { ?> <p>Hello</p> <? } Whereas this is much neater: <? if (something): ?> <p>Hello</p> <? endif; ?> -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * /* millihelen, n.: The amount of beauty required to launch one ship. */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php