mroos 0 Denunciar post Postado Agosto 18, 2012 Olá pessoal gostaria que alguém me dissesse o que tem de errado no código abaixo, estou tentando mostrar os 5 últimos anúncios cadastrados, então aparece uma imagem em cima e três linhas abaixo, e os outros anúncios seguintes aparecem na horizontal, ao lado do outro anuncio, já tentei mas do jeito que faço sempre aparecem em baixo. O que tem de errado?? Desde já agradeço <?php $sqlultimosanuncios = mysql_query("SELECT * FROM anuncio order by CODIGO DESC limit 5"); ?> <table width="960" border="0" align="center"> <tr> <th width="757" scope="col"><table width="100%" border="0"> <tr> <th colspan="5" align="left" scope="col"><p class="ver">Últimos anúncios</p></th> </tr> <tr> <?php while($valorultanuncio = mysql_fetch_array($sqlultimosanuncios)) { ?> <td width="16%"><img src="<?php echo $valorultanuncio["IMAGEM1"] ?>" width="80" height="45" alt="" /></td> </tr> <tr> <td><?php echo $valorultanuncio["ANUNCIO"] ?></td> </tr> <tr> <td> </td> </tr> <tr> <td> </td> </tr> </table></th> <?php }?> Compartilhar este post Link para o post Compartilhar em outros sites
Marcos_imasters 288 Denunciar post Postado Agosto 18, 2012 você queria que um parecesse do lado do outro tipo Casa bahia | ricardo eletro | vivo |oi etc....? se for pra exibir de lado é assim <table width="200" border="0" cellpadding="0" cellspacing="0"> <tr> <td><span class="ver">Últimos anúncios</span></td> </tr> <tr> <td height="73"><table width="82" border="1" cellpadding="0" cellspacing="0"> <tr> <?php $sqlultimosanuncios = mysql_query("SELECT * FROM anuncio order by CODIGO DESC limit 5"); while($valorultanuncio = mysql_fetch_array($sqlultimosanuncios)) { ?> <td width="128"> <center> <p><img src="<? echo $valorultanuncio["IMAGEM1"] ?>" width="80" height="45" alt="" /><? echo $valorultanuncio["ANUNCIO"] ?></p> </center></td><? }?> </tr> </table></td> </tr> </table> tipo se nao tiver exibindo poder ser a campo CODIGO PORIS TU BOTOU PRA EXIBIR POR VALOR DECRESENTE OW SEJA TEM QUE SER EM VALOR DE NUMERO SE NAO FOR NUMERO ACHU QUE NAO VAI EXIBIR... Compartilhar este post Link para o post Compartilhar em outros sites