I have a blog embedded in the site and I want to limit the number of posts per page, but the problem you are giving me is that it does not limit my posts.
Code
///Ler posts do blog da página atual
$result = mysql_query("$busca LIMIT $inicio,$total_reg");
$num_registos = mysql_affected_rows();
for ($i = 1; $i <= $num_registos; $i++){
$linha = mysql_fetch_array($result);
//declarar variaveis
$id=$linha["id"];
$busca = "SELECT * FROM blog";
$total_reg = "4"; // número de registos por página
$pagina=$_GET['pagina'];
if (!$pagina) {
$pc = "1";
} else {
$pc = $pagina;
}
$inicio = $pc - 1;
$inicio = $inicio * $total_reg;
$limite = mysql_query("$busca LIMIT $inicio,$total_reg");
$todos = mysql_query("$busca");
$tr = mysql_num_rows($todos); // verifica o número total de registros
$tp = $tr / $total_reg; // verifica o número total de páginas
$anterior = $pc -1;
$proximo = $pc +1;
if ($pc>1) {
echo " <a class='blog-page-link' href='?pagina=$anterior'><i class='fa fa-arrow- left'></i> Anterior</a> ";
}
if ($pc<$tp) {
echo " <a class='blog-page-link' href='?pagina=$proximo'>Seguinte <i class='fa fa-arrow-right'></i></a>";
}