View Single Post
Old 06-15-2009, 08:33 AM   #25 (permalink)
Izym
The Contributor
 
Izym's Avatar
 
Join Date: Sep 2007
Posts: 32
Thanks: 0
Izym is on a distinguished road
Default

PHP Code:
$camelCase 1337;

if(
$a == 1)
    echo 
"this is an one line if.";

if(
$a == 2)
{
    echo 
"this is a ";
    echo 
"multiple line if.";
}

function 
camelCase($param)
{
    echo 
"lower camel case for functions, upper for class names.";

And always (real) tabs, 2 or 4 spaces long.
Izym is offline  
Reply With Quote