nbr2004 Postado Janeiro 16, 2007 Denunciar Share Postado Janeiro 16, 2007 Olá pessoal estou com esse código aqui, e eu queria fazer paginação nele, eu sou iniciante em php e não sei como faz isso, alguém poderia me ajudar?<? $cat = $_GET['cat']; $subcat = $_GET['subcat'];?> <? include "conexao.php";?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title><? include "includes/titulo.php"; ?></title> <link href="estilos/estilos.css" rel="stylesheet" type="text/css"> </head> <body> <script language="javascript" src="js/funcoes.js"></script> <? include "includes/topo.php"; ?> <table width="777" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="5"></td> </tr> </table> <table width="777" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="172" valign="top"><table width="172" height="20" border="0" cellpadding="0" cellspacing="1"> <tr> <td width="172" background="imagens/fundo_categoria.jpg"> </td> </tr> <? $sql = mysql_query("SELECT * FROM catalago_categorias ORDER BY categoria") or die ('Falha exibindo categorias'); while($linha = mysql_fetch_array($sql)) { $id = $linha["id"]; $categoria = $linha["categoria"]; echo "<tr>"; echo "<td width='172' height='20' background='imagens/fundo_categorias.jpg' class='style1'> <a href='secao.php?categoria=".$id."'><span class='style3'>".$categoria."</span></a></td>"; echo "</tr>"; } ?> </table></td> <td width="500" valign="top"><table width="499" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#BFDFF0"> <tr> <th scope="col"><? $sql3 = mysql_query("SELECT * FROM catalago_empresas where categoria like'%$cat%' and subcategoria like '%$subcat%' order by tipo") or die ('Falha na Query'); while ($linha3=mysql_fetch_array($sql3)) { $id = $linha3["id"]; $subcategoria = $linha3["subcategoria"]; $imagem = $linha3["imagem"]; $empresa = $linha3["empresa"]; $endereco = $linha3["endereco"]; $bairro = $linha3["bairro"]; $fone = $linha3["fone"]; $cidade = $linha3["cidade"]; $tipo = $linha3["tipo"]; ?> <table width="89%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="392" height="50" valign="top"><table width="114" border="0" align="left"> <tr> <? if($tipo == "C") { echo "<td width=108 height=50>"; } else { ?> <td width="108"><a href="../detalhes.php?id=<? echo $id; ?>"> <img src="<? echo $imagem; ?>" width="100" height="50" border="0" align="top"></a> <? } ?> </td> </tr> </table> <? echo "<font face=verdana size=1><br><b>"; if($tipo == "C") { echo "$empresa</b><br> $endereco $bairro<br><b>Fone:</b> $fone <b>Cidade: </b>$cidade</font><hr size=1>"; } else { echo "<font face=verdana size=1><a href=../detalhes.php?id=$id>$empresa</a></b><br> $endereco $bairro<br><b>Fone:</b> $fone <b>Cidade: </b>$cidade</font><hr size=1>"; } ?> </td> </tr> </table> <? } if(mysql_num_rows($sql3)==0) { echo "<br><center><font face=verdana size=1 color=gray>Nenhuma empresa cadastrada nessa categoria</font></center>"; } ?> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="18"></td> </tr> </table> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="18"><div align="center"><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong><a href="java script:history.go(-1)">Voltar</a></strong></font></div></td> </tr> </table> <table width="90%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="18"></td> </tr> </table></th> </tr> </table></td> <td width="105" valign="top"><table width="105" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" valign="top"><? include "includes/menu_direito.php"; ?> </td> </tr> </table></td> </tr> </table> <? include "includes/rodape.php"; ?> </body> </html> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 ESerra Postado Janeiro 16, 2007 Denunciar Share Postado Janeiro 16, 2007 Aqui você tem um exemplo de paginação, estude ele, e retorne com a sua dúvida. Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
nbr2004
Olá pessoal estou com esse código aqui, e eu queria fazer paginação nele, eu sou iniciante em php e não sei como faz isso, alguém poderia me ajudar?
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.