|
Dicas:
if (($cat) and ($id)) {
$sql = "SELECT * FROM adm_noticia WHERE categoria='$cat' AND id='$id'";
$resultado = mysql_query($sql) or die ("Ocorreu um erro no modulo: 01");
while ($linha=mysql_fetch_array($resultado)) {
$id = $linha["id"];
$titulo = $linha["titulo"];
$sub_titulo = $linha["sub_titulo"];
$data = $linha["data"];
$categoria = $linha["categoria"];
$figura = $linha["figura"];
$texto = $linha["texto"];
echo "
$titulo
$texto
";
}
}
?>
if ($cat and !$id){
$sql_tr= mysql_query("select COUNT(*) as total from adm_noticia WHERE categoria = '$cat'");
$res_tr= mysql_fetch_object($sql_tr);
$tr=$res_tr->total; //tr total de registros
if (isset($_GET[rpp])) {$rpp = $_GET[rpp];} else {$rpp = 20;} // $rpp é registros por pagina - o padrao é 10
if (isset($_GET[pg])) {$pg = $_GET[pg];} else {$pg = 0;}
$inicial = $pg * $rpp ;
$sql = "SELECT * FROM adm_noticia WHERE categoria='$cat' ORDER BY id DESC LIMIT $inicial,$rpp";
$res = mysql_query($sql,$conexao);
while ($linha=mysql_fetch_array($res)) {
$id = $linha["id"];
$titulo = $linha["titulo"];
$sub_titulo = $linha["sub_titulo"];
$data = $linha["data"];
$categoria = $linha["categoria"];
$figura = $linha["figura"];
$texto = $linha["texto"];
echo "$titulo
";
}
f_paginacao($tr,$rpp,$pg,$cat);
}
?>
|
|