Why you ppl. do this:
  if ($condition) {
    //action 1
    //action 2
    //action 3

  }

instead of this:
  if ($condition)
  {
    //action 1
    //action 2
    //action 3
  }

with the '}' you'll see directly the new code block that belongs to the IF
statment.

anyway...it's just a style after all
"Fredrik Arild Takle" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I think it's impossible to read/understand my own scripts if i don't do
it.
>
> Do:
>
> <?php
>   if ($submit) {
>     echo "Counting from 1-32<br>";
>     for ($ii = '1'; $ii <= '32' $ii++) {
>       echo $ii." ";
>     }
>   }
>   echo "<br>All done!";
> ?>
>
> instead of:
>
> <?php
> if ($submit) {
> echo "Counting from 1-32<br>";
> for ($ii = '1'; $ii <= '32' $ii++) {
> echo $ii." ";
> }
> }
> echo "<br>All done!";
> ?>
>
> Best Regards
> Fredrik A. Takle
>
> "Keith Jeffery" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > Simply indent formatting for readability.  I personally don't indent
after
> > the <? tag, but to each his/her own.
> >
> >
> > "Kyle Smith" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > Whenever i get a php script off a website why is it that most of the
main
> > parts in the script have a space from the left border. eg
> >
> > <?php
> >     echo"spazzzzzzz";
> > ?>
> >
> > ????
> >
> > -lk6-
> > http://www.StupeedStudios.f2s.com
> > Home of the burning lego man!
> >
> > ICQ: 115852509
> > MSN: [EMAIL PROTECTED]
> > AIM: legokiller666
> >
> >
> >
> >
> >
>
>



-- 
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