dedas Posted September 16, 2011 Report Share Posted September 16, 2011 Não to conseguindo listar os itens do banco de dados.Ta dando um loop infinito.LISTA<!-- LISTA CIDADE --> <table width="100%" border="1"> <tr> <td colspan="4" align="center">Lista Cidade</td> </tr> <tr> <td width="59%">Nome</td> <td width="13%" align="center">UF</td> <td colspan="2" align="center"><a href="">Novo Registro</a></td> </tr> <?php require 'classe/cidade.php'; $classe = new cidade_classe(); $classe->listar(); while($mostra_consulta = $classe->dados_db){ $nome_db = $mostra_consulta['cid_nome']; $uf_db = $mostra_consulta['cid_uf']; ?> <tr> <td><?php echo $nome_db; ?></td> <td align="center"><?php echo $uf_db; ?></td> <td width="14%" align="center"><a href="">Editar</a></td> <td width="14%" align="center"><a href="">Excluir</a></td> </tr> <?php } ?> <tr> <td colspan="4">Número de registros: </td> </tr> </table>CLASSE<?php//CONEXAO BANCOrequire 'conexao.php';class cidade_classe{ var $dados_db; function listar(){ $sql_select = "SELECT * FROM tbl_cidade"; $envia_consulta = mysql_query($sql_select); $this->dados_db = mysql_fetch_array($envia_consulta); } }?> Quote Link to comment Share on other sites More sharing options...
0 rickayron Posted September 18, 2011 Report Share Posted September 18, 2011 Não to conseguindo listar os itens do banco de dados.Ta dando um loop infinito.LISTA<table width="100%" border="1"><tr><td colspan="4" align="center">Lista Cidade</td></tr><tr><td width="59%">Nome</td><td width="13%" align="center">UF</td><td colspan="2" align="center"><a href="">Novo Registro</a></td></tr><?phprequire 'classe/cidade.php';$classe = new cidade_classe();$classe->listar();while($mostra_consulta = $classe->dados_db){$nome_db = $mostra_consulta['cid_nome'];$uf_db = $mostra_consulta['cid_uf'];?><tr><td><?php echo $nome_db; ?></td><td align="center"><?php echo $uf_db; ?></td><td width="14%" align="center"><a href="">Editar</a></td><td width="14%" align="center"><a href="">Excluir</a></td></tr><?php } ?><tr><td colspan="4">Número de registros: </td></tr></table>CLASSE<?php//CONEXAO BANCOrequire 'conexao.php';class cidade_classe{var $dados_db;function listar(){$sql_select = "SELECT * FROM tbl_cidade";$envia_consulta = mysql_query($sql_select);$this->dados_db = mysql_fetch_array($envia_consulta); } }?>olá tudo bemtente isso.<!-- LISTA CIDADE --> <table width="100%" border="1"> <tr> <td colspan="4" align="center">Lista Cidade</td> </tr> <tr> <td width="59%">Nome</td> <td width="13%" align="center">UF</td> <td colspan="2" align="center"><a href="">Novo Registro</a></td> </tr> <?php require 'classe/cidade.php'; $classe = new cidade_classe(); $classe->listar(); $mostra_consulta = $classe->dados_db; foreach($mostra_consulta as $mc => $lista) { $nome_db = $mostra_consulta['cid_nome']; $uf_db = $mostra_consulta['cid_uf']; echo "<tr> <td><?php echo $nome_db; </td> <td align='center'>$uf_db</td> <td width='14%' align='center'><a href=''>Editar</a></td> <td width='14%' align='center'><a href=''>Excluir</a></td> </tr>"; } ?> <tr> <td colspan="4">Número de registros:<?php echo count($mostra_consulta); ?> </td> </tr> </table>até mais, qualquer erro ou duvida continue postando os erros. Quote Link to comment Share on other sites More sharing options...
Question
dedas
Não to conseguindo listar os itens do banco de dados.Ta dando um loop infinito.
LISTA
CLASSE
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.