10-29-2009, 11:52 AM
|
#2 (permalink)
|
|
The Contributor
Join Date: Mar 2009
Location: US
Posts: 76
Thanks: 0
|
You need to enclose each level
PHP Code:
isset( $one[$i]['timestamp'] ) ? $one[$i]['timestamp'] : ( isset( $two[$i]['timestamp'] ) ? $two[$i]['timestamp'] : ( isset( $three[$i]['timestamp'] ) ? $three[$i]['timestamp'] : 'fail'));
|
|
|
|