$sqla = "select * from comercio_lista where publicidade = '1' order by rand()";
$numa = 4; //quantidade de registros.
$limitea = mysql_query("$sqla limit $numa")or die ("Erro 03: ".mysql_error()); //verifica quantos registro devem aparecer
if(mysql_num_rows($limitea)>0) //verifica se existem registros
{
while($linhas=mysql_fetch_array($limitea))
{
$arquivos = "../fotos/" . $linhas["id_comercio_lista"] . "p.jpg";
if(file_exists($arquivos))
{
$imageps = "
";
} else
{
$imageps = "";
}
echo"
";
echo "
";
echo"
" . $imageps . "
";
echo "
";
}
}
?>
$tempo = 86400;
$sqlx = "update v_novena_virtual set data = unix_timestamp(now()), novena = (novena + 1) where (data + " . $tempo . ") <= unix_timestamp(now())";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '1', link_novena = '1novena.php' where novena = 1";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '2', link_novena = '2novena.php' where novena = 2";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '3', link_novena = '3novena.php' where novena = 3";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '4', link_novena = '4novena.php' where novena = 4";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '5', link_novena = '5novena.php' where novena = 5";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '6', link_novena = '6novena.php' where novena = 6";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '7', link_novena = '7novena.php' where novena = 7";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '8', link_novena = '8novena.php' where novena = 8";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '9', link_novena = '9novena.php' where novena = 9";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '10', link_novena = 'fim-da-novena.php' where novena = 10";
mysql_query($sqlx);
$sqlx = "update v_novena_virtual set novena = '10', frase = 'º Dia - Fim da Novena' where novena = 11";
mysql_query($sqlx);
//inicio da paginacao
$pagina = $_REQUEST["pagina"]; //recebe o valor da pagina URL
$sql = "select cidade, uf, novena, frase, dataehora, nome, id, mostrar, santo from v_novena_virtual where mostrar = '1' and santo = 'galvao' order by id desc";
$num = 10; //quantidade de registros por pagina.
$prev = 5; //número maximo de paginas anteriores.
$next= 5; //número maximo de paginas posteriores.
if ($pagina==""){$pagina=1;}
if (is_numeric($pagina)){echo "";} //Aqui verifica se o numero da pagina
else
{
exit;
}
$todos = mysql_query($sql) or die ("Erro: ".mysql_error());
$total = mysql_num_rows($todos);
$pages=($total/$num);
$primeiro=(($pagina*$num)-$num);
$anterior=$pagina-1;
$posterior=$pagina+1;
$prev=$pagina-$prev;
$last=$pagina+$next;
$next=$pagina+1;
//verifica limites da paginacao
$limite = mysql_query("$sql limit $primeiro, $num")or die ("Erro 03: ".mysql_error());
//criando a visualizacao html
if(mysql_num_rows($limite)>0) //verifica se existem registros
{
while($linha=mysql_fetch_array($limite))
{
echo"
";
}
echo "
";
//criando navegador de paginas
echo "
";
}
else echo "
Nenhum Item Encontrado!!!
";
?>