PHP cheatsheet - Control Structures: IF

Control Structures: IF
if(condition){
    //Instructions
}
elseif(condition){
    //Instructions
}
else{
    //Instructions
}
Date: From:www.lautturi.com, cheatsheet