<!-- BEGIN:NEW_SONGS --> <?php if (is_array($newSongs) && count($newSongs) > 0): ?> <div id="top_requests"> <dl> <dt>Новинки эфира</dt> <?php $counter = 1; foreach ($newSongs as $newSong): ?> <dd> <a href="javascript:songinfo(<?php echo $newSong->ID; ?>)" title="<?php echo $newSong->artist_title; ?>"> <?php echo $counter++;?>. <?php echo $newSong->title; ?> <?php if(!empty($newSong->artist)) : ?><br /> от <?php echo $newSong->artist; ?><?php endif; ?> </a> </dd> <?php endforeach; ?> </dl> </div> <?php endif; ?> <!-- END:NEW_SONGS -->