elisonj 0 Denunciar post Postado Outubro 14, 2003 Gente, eu to com um probleminha, tipo eu tava precisando montar um esqueminha de exclusão de fotos, e precisava ordenar essas fotos com paginação... aí eu encontrei um script aqui no imasters sobre paginação e implementei, só que não funciona!! bom, o código está abaixo, quem puder me ajudar eu serei muito grato... Valeu!! :) <? $titulo = "Remover Imagens"; session_start(); if($logatual=="") { header("Location:index.php"); } else { include("db.php"); include("superior2.php"); $ss = session_id(); $pSessao= mysql_query("select sessao from adm_empresas where codigo='$logatual'"); $kSessao= mysql_fetch_array($pSessao); if (!isset($pg)) // variavel $pg é a pagina atual $pg = 0; $inicial = $pg * 5; // este 5 é o número de resultados por tela ?> <form action="del_foto.php" METHOD="POST" NAME="form" enctype="multipart/form-data" onSubmit="return valida();"> <table width="580" border="0" align="center" cellspacing="1" cellpadding="0" class="iten"> <tr> <td align="left" colspan=4><b><font color="<? echo $Forte; ?>"> Selecione as imagens que deseja remover.</font></b></td> </tr> <tr bgcolor="<? echo $Forte; ?>"> <td width="35" align="center"><b><font color="#FFFFFF"> </font></b></td> <td width="235" align="left" colspan=3><b><font color="#FFFFFF"> Imagens - <?echo $Titulo;?></font></b></td> </tr> <tr> <td colspan = 4> </td> </tr> <? $query= mysql_query("SELECT * FROM fotos_projeto where tcodprojeto='$codigo_projeto' ORDER BY codigo LIMIT $inicial,5"); //$query= mysql_query("select * from fotos_projeto where tcodprojeto='$codigo_projeto'"); //$quantidade = mysql_num_rows($query); $contar = mysql_query("SELECT * FROM fotos_projeto where tcodprojeto='$codigo_projeto'"); $quantidade = mysql_num_rows($contar); $pages = ($total_records / 5); // caso você mostre outra quantidade, mude o 5 aqui if ($quantidade == 0) { ?> <tr> <td colspan = 4 align="center" background="images/fundo_fotos.gif" style="border-style: outset; border-width: 2"><br><br> <center><b><h2><font color="<? echo $Forte; ?>">Não existe nenhuma foto cadastrada!!!</h2></font></b><br> <a href="java script:history.go(-1)"><b><font size=3 color="#000000"><? echo "Voltar"; ?><br><br></font></center> </td> </tr> <? } else { while($linha = mysql_fetch_array($query)) { //echo $array['estado']; ######## //while($linha= mysql_fetch_array($query)) //{ $id_foto= $linha[codigo]; $cod_projeto= $linha[tcodprojeto]; $foto= $linha[imagem]; if($foto !="") { ?> <tr> <td align="center" valign="center"> <input type="checkbox" name="apaga[]" value="<?echo $id_foto;?>"> </td> <td colspan = 3> <img border="0" src='../../../arquitetura/admin/projetos/<?echo $foto?>' width="200"> </td> </tr> <tr> <td colspan = 4> <hr></td> </tr> <?}}?> <tr> <td colspan = 4 align="center"> <input type="submit" value="Excluir fotos" name="exclui" style="background: #F5E0CB;" ></td> </tr> <tr> <td colspan = 4 align="center"> <?} ######## criando os links dinâmicos if ($pg <> 0) { $url = $pg - 1; echo "<a id=mulink href='$PHP_SELF?pg=$url'>5 anteriores</a> "; } else { echo " "; } for ($i = 0; $i<($pages + 1); $i++) { if ($i == $pg) { echo "<font face=Arial size=2 color=ff0000><b> $i </b></font>"; } else { echo "<a id=mulink href='$PHP_SELF?pg=$i'> $i </a>"; } } if ($pg < $pages) { $url = $pg + 1; echo "<a id=mulink href='$PHP_SELF?pg=$url'> Próximos 5</a> "; } else { echo " "; } ?> </td> </tr> </form> </table> <? include("inferior.php"); }?> Compartilhar este post Link para o post Compartilhar em outros sites
elisonj 0 Denunciar post Postado Outubro 14, 2003 alguem se abilite, pleace!! ;) Compartilhar este post Link para o post Compartilhar em outros sites