Forum Moderators: coopster
$font_table = array(array(array('nothing', 'one'),
array('two', 'three')),
array(array('four', 'five'),
array('six', 'seven')));
echo $font_table[!empty($a['Font3'])][!empty($a['Font2'])][!empty($a['Font'])]; this seems to be a multidimensional
$font_table[0][0][0] = 'nothing'
$font_table[0][0][1] = 'one'
$font_table[0][1][0] = 'two'
$font_table[0][1][1] = 'three'
$font_table[1][0][0] = 'four'
$font_table[1][0][1] = 'five'
$font_table[1][1][0] = 'six'
$font_table[1][1][1] = 'seven'
array('two', 'three')
{is the same as}
$blahblah[0] = 'two'
$blahblah[1] = 'three'