Hey again
The conventions provided by evilcode may look "nice" to some, however they are not standardised. When using PHP, with it being an Open Source programming/language, it is very likely that several people will need to read your code. Code does not only need to be beautiful, it also needs to be readable, that's the whole point of conventions.
The currently accepted standard revolves around the PEAR coding standards, found here: http://pear.php.net/manual/en/standards.php . I advise that everyone use these conventions... they increase readability, keep your code in a standardised structure and makes it pretty all in one

.
Some other points such as avoiding shell (#) style comments and treating "Alternative Syntax" as the plague will also improve readability and make your code more accessible to other programmers.
Conventions should not only be used in coding, however you should use them in file/module/table naming as well. This aids in determining the purpose of files as well as their content types. This all makes your life easier... something that we develop applications for in the first place!
If anyone's interested, here is a very brief list of some conventions, additional to the PEAR Standards, that I try and stick to:
CONVENTIONSComments: Single Line (//) for short, specific comments and structure
comments. Blocks (/* ... */) for larger comments, documentation
entries, copyright notices etc.
Variable Naming: lowercase, underscores eg $variable_name
Constant Naming: uppercae, underscores eg SOME_CONSTANT
Function Naming: lowercase except first letters of terms eg FunctionName()
Class Naming: uppercase, underscores, OBJ_ prefix eg $OBJ_DATABASE
excepton: System Classes: SYS_ prefix
Table Naming: lowercase, tbl_ prefix eg tbl_name
Database Naming: lowercase, db_ prefix eh db_databasename
File Naming:
includes: .inc.php suffix
config: .cfg.php suffix
classes: .cls.php suffix
setup: _ perfix, .stp.php suffix
HTML Template Tagging: <tpl prefix, /> suffix for non-Smarty engines