0 )
{
foreach( $aryBnrList as $aryItem )
{
$showID = $aryItem['bnr_id'];
$showName = $aryItem['bnr_name'];
$showLine1 = $aryItem['bnr_line1'];
$showCover = '';
$aryImg = explode( '|' , $aryItem['bnr_path'] );
if ( $aryImg[1] != '')
{
if (file_exists('../'.$aryImg[1]))
{
$showCover = '../'.$aryImg[1];
$coverPath = img_path($showCover, 'resize');
if (file_exists($coverPath)) {
$showCover = $coverPath;
}
}
}
?>