Make sure you close the accolade afterwords in PHP -- other than that, yes,
it works just fine!

For example this should work just fine:
---------
<?
  for ($i=0;$i<10;$i++) {
    if (!($i%3)) {
?>
  Found a multiple of three!
<?
    echo($i);
?><br><?
    }
  }
?>
----------

Bogdan

Robert Dyke wrote:

> Hello:
>
> In ASP I can write a Conditional statement like this:
>
> <% If $varA == True Then %>
> Straight HTML in here that only displays if $varA == True
> <% Else %>
> Straight HTML in here that only displays if $varA != True
> <% End if %>
>
> Translating this to PHP doesn't work:
>
> <? If ($varA == True) {  ?>   // error is generated here ...
>
> Is there some way to do it this way in PHP?  I'd rather not create a huge
> variable and then echo that.
>
> Thanks in advance.
>
> Robert Dyke
> Montana Software
> http://www.montanasoft.com/
> [EMAIL PROTECTED]
>
> * For the best results please include the text of this message (cut and
> paste if necessary) in your reply *
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to