"; $categoria = mysql_fetch_array($sql_categoria); ///////////// SQL PARA NOTICIAS DA CATEGORIA $categoria_sql = " and noticia.`id_categoria` = '" . $categoria['id'] . "'"; ///////////// TITULO DA SESSÃO CATEGORIA $sessao_titulo = $categoria['titulo']; } else { ///////////// TITULO DA SESSÃO ULTIMAS NOTICIAS $sessao_titulo = $modulo_noticias['un_titulo']; } /////////////////// PAGINACAO $pag = ($_GET['pag']); $pag = filter_var($pag, FILTER_VALIDATE_INT); $inicio = 0; $limite = 10; if ($pag != '') { $inicio = $pag - 1; $paginacao_titulo = (' - Página ' . $pag . ''); } $inicio = $pag * $limite; $busca_total = mysql_query("SELECT COUNT(*) as total FROM `modulo_noticias` AS noticia WHERE noticia.`data_publicar` <= '$data_hora' and noticia.`status` = '1' $categoria_sql"); $total = mysql_fetch_array($busca_total); $total = $total['total']; ////////////////////////////// echo '

' . $sessao_titulo . $paginacao_titulo . '

'; ///////////// NOTICIA CATEGORIA -> LISTAR 1,10 $sql_editorias = mysql_query("SELECT noticia.`id`, noticia.`introducao`, noticia.`titulo`, noticia.`apelido`, noticia.`foto_capa`, noticia.`comentarios`, noticia.`data_publicar`, noticia.`chapeu`, noticia.`video`, noticia.`audio`, noticia.`galeria`, noticia.`urgente`, noticia.`box_dark`, noticia.`aovivo`, noticia.`id_categoria`, categoria.`apelido` AS categoria_apelido FROM `modulo_noticias` AS noticia INNER JOIN `modulo_categoria` AS categoria ON noticia.`id_categoria` = categoria.`id` WHERE noticia.`data_publicar` <= '$data_hora' and noticia.`status` = '1' $categoria_sql ORDER BY data_publicar DESC LIMIT $inicio , $limite"); while ($noticia = mysql_fetch_array($sql_editorias)) { $icones_media = null; $noticia_chapeu = null; $article_class = null; $noticia_url = null; // BOX DARK if ($noticia['box_dark'] == 1 or $modulo_noticias_bloco['box_dark'] == 1) { $article_class = ' box-dark'; } // CHAPEU if ($noticia['aovivo'] == 1) { $noticia_chapeu = 'Ao Vivo'; } elseif ($noticia['chapeu'] > '') { $noticia_chapeu = '' . $noticia['chapeu'] . ''; } // COMENTÁRIOS if ($noticia['comentarios'] >= '1') { $noticia_comentarios = '- ' . $noticia['comentarios'] . ' comentario' . ($noticia['comentarios'] > 1 ? 's' : '') . ''; } echo ""; // ICONES $noticia['video'] == 1 ? $icones_media .= '' : ''; $noticia['audio'] == 1 ? $icones_media .= '' : ''; $noticia['galeria'] == 1 ? $icones_media .= '' : ''; $icones_media > '' ? $icones_media = '
' . $icones_media . '
' : ''; // PREPARAR URL DA NOTICIA $noticia_url = $modulo_noticias['pasta'] . $noticia['categoria_apelido'] . '/' . $noticia['id'] . '-' . $noticia['apelido'] . '.html'; if ($noticia['foto_capa'] > '') { $foto_capa = '
' . $noticia['titulo'] . ' ' . $icones_media . '
'; } else { $foto_capa = ''; } print('
' . $foto_capa . '
' . $noticia_chapeu . '

' . $noticia['titulo'] . '

' . $noticia['introducao'] . '

' . $noticia_comentarios . '

'); } ?>
10) { include("paginacao.php"); } ?>