reducing if else code - lesser code lines - PHP Views : 248
Tagged in : PHP
0 0
Send mail
In general we write if else as
if ($a) {
print $b;
}
else {
print $c;
}


this can be done in one line as
print ( $a ? $b : $c );

By rajesh, On - 2010-01-17



    Login to add Comments .