I have to write a lot of code like this:
if ( !empty($value['fax'])) {
$temp['fax'] = $value['fax'];
} else {
$temp['fax'] = "unknown";
}
just wondering if there's a shorter version of this ...