PHP Tips and Tricks
PHP short if code
Try cutting down your code by using the short if/else for simple one line conditional statements
$variable = (statement) ? "return if true" : "return if false";
Compared to
if(statement) {
$variable = "return this if true";
}
else {
$variable = "return this if false";
}