
pcfalanga
(usa Slackware)
Enviado em 30/04/2008 - 22:17h
Boa noite,
Esse é o meu código abaixo (uma parte dele):
=================================================
echo "<table border='0' cellpadding='1' cellspacing='0'>";
echo "<tr>";
while ($linha=mysql_fetch_array($resultado)) {
$id = $linha["id"];
$nome_logo_banda_evento = $linha["nome_logo_banda_evento"];
$local_show = $linha["local_show"];
$data_show = $linha["data_show"];
$texto_por_quem = $linha["texto_por_quem"];
$fotos_por_quem = $linha["fotos_por_quem"];
$review_texto = $linha["review_texto"];
$imagem_show_index = $linha["imagem_show_index"];
$ver = $linha["ver"];
echo "<td>";
echo "<div align='center'><font size='1' face='Verdana'>";
echo "<a href='reviews_shows2.php?id=$id'><img src='imagens_reviews_shows/$imagem_show_index' alt='$nome_logo_banda_evento' border='1' width='100' height='76' align='center'></a>";
$data_show = shz_data_show("$data_show", "br");
echo "<br>";
echo "$nome_logo_banda_evento";
echo "<br>";
echo "$data_show";
echo "</font></div>";
echo "</td>";
}
echo "</tr>";
echo "</table>";
=================================================
Ele imprime no site uma linha com 5 conteúdos.
EU QUERO QUE ELE IMPRIMA ISSO COM 10 CONTEÚDOS, PORÉM EM UMA TABELA EM DUAS LINHAS, cmo faço?
atte.,
Paulo César "PC"