The PHP code conventions I use
<?php // Did you notice the full-style opening PHP tags? /************************************************************** * Variable Naming conventions ************************************************************* * - Use data type as prefix inside the name * Eg: $sName instead of just $name * - Try to use as descriptive names as possible * Eg: $arProductList instead of just $arList **************************************************************/ /************************************************************** * Basic Datatypes ...