Вот с помощью этого кода, картинки выводятся тегом {poster}. Что нужно изменить в нём, чтобы все загруженные картинки выводились, кроме самой первой?
//////////////////IMGES/////////////////
$sql_poster = $db->query( "SELECT images, news_id FROM " . PREFIX . "_images where news_id = '{$row['id']}' LIMIT 2" );
$poster = $db->get_row($sql_poster);
if ($poster['images'] != "") {
$scrsList = explode('|||',$poster['images']);
$scrs = '';
$cntscrs = 6;
$ai = 0;
foreach ($scrsList as $scr)
{
$ai++;
$scr = trim($scr);
$poster_temp = explode("/",$scr);
$poster_name = $poster_temp[1];
$poster_data = substr($scr,0,8);
if ($ai<=$cntscrs) {
$scrs .= '<div class="posters"><a href="'. $config ['http_home_url'] . 'uploads/posts/'.$poster_data.''.$poster_name.'"><img src="'. $config ['http_home_url'] . 'uploads/posts/'.$poster_data.$poster_name.'"></a></div>'; } else {
$scrs .= '';
}
}
unset($scrsList);
if (!empty($poster['images'])) {
$scrall= $scrs;}
$tpl->set ( '{poster}', $scrall);
} else $tpl->set ( '{poster}', "" );
/////////////////END////////////////