Jump to content
Fórum Script Brasil
  • 0

Paginar


gadreis2000

Question

Ola pessoal, tenho codigo abaixo para ver dados em uma tabela mas agora preciso dividir em paginas porque a tabela esta fincado grande e fica dificil visualizar dados em uma so pagina pois fica muito grande. E eu não sei fazer, já procurei na net exemplos mas não achei. Se puderem ajudar agradeço.

<? include('header.php');

?>

<?

// Mensagens de Erro

$msg[0] = "Conexão com o banco falhou!";

$msg[1] = "Não foi possível selecionar o banco de dados!";

// Fazendo a conexão com o servidor MySQL

$conexao = mysql_pconnect("localhost","meusite","123456") or die($msg[0]);

mysql_select_db("meusite_g",$conexao) or die($msg[1]);

// Colocando o Início da tabela

?>

<div id=content">

<div class="featurebox">

<h2>Posicao produtos</h2>

<table align="center" width="80%" cellspacing="2" cellpadding="2" border="1">

<td><b>Posicao</b></span></td>

<td><b>Nome</b></span></td>

<td><b>Status</b></span></td>

</tr>

</div>

<?

// Fazendo uma consulta SQL e retornando os resultados em uma tabela HTML

$query = "SELECT id,pemail,credito FROM produtos ORDER BY id";

$resultado = mysql_query($query,$conexao);

while ($linha = mysql_fetch_array($resultado)) {

?>

<tr>

<td align="center"><b><? echo $linha['id]; ?></b></td>

<td align="center"><b><? echo $linha['pemail']; ?></b></td>

<td align=center"><b><? echo $linha['credito]; ?></b></td>

</tr>

<?

}

?>

</table>

</div>&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<br />

<!--footer starts here-->

<? include('footer.php'); ?>

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...