Changeset 209 for trunk/docs


Ignore:
Timestamp:
Nov 29, 2006 1:25:59 AM (17 years ago)
Author:
scdev
Message:

Q - bug fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/coding_standards.txt

    r136 r209  
    44
    55======================================================================
    6 Preable
     6Preamble
    77======================================================================
    88
     
    142142
    143143======================================================================
    144 String concatination
    145 ======================================================================
    146 
    147 Always include a space before and after the concatonation operator '.' which
     144String concatenation
     145======================================================================
     146
     147Always include a space before and after the concatenation operator '.' which
    148148improves readability and improves search-and-replace of adjacent elements.
    149149
     
    175175
    176176For large or complex blocks of HTML, using the following method is much faster
    177 and safer than echo because the php processesor is bypassed and content goes
     177and safer than echo because the php processor is bypassed and content goes
    178178directly to output:
    179179
     
    313313
    314314All form definitions must be on their own line and either fully defined within
    315 a <td></td> pair or be outside table tags. Forms must also aways have an action
     315a <td></td> pair or be outside table tags. Forms must also always have an action
    316316parameter:
    317317
     
    365365When building queries referencing two-or-more tables always preface columns
    366366with the table containing the column (admin_tbl.username, location_tbl.location_address).
    367 This method is much prefered over using aliases of table names (a.username, l.location_address).
     367This method is much preferred over using aliases of table names (a.username, l.location_address).
    368368
    369369Table names should be singular (user_tbl instead of users_tbl).
Note: See TracChangeset for help on using the changeset viewer.