karkara 0 Denunciar post Postado Agosto 22, 2004 Tenta assim: PHP [/tr][tr]<?php$conexao = mysql_connect("localhost","root"); $db = mysql_select_db("internaltas"); $sql = "SELECT * FROM internaltas ORDER BY id DESC"; $resultado = mysql_query($sql) or die ("Não foi possível realizar a consulta ao banco de dados"); while ($linha=mysql_fetch_array($resultado)) { $id = $linha["id"]; $nome = $linha["nome"]; echo "<th width=15>$linha['id']<br></th>"; echo "<th width=295>$linha['nome']<br></th>"; echo "<th width=50><a href=\"excluir.php?id=$linha['id'] \">Excluir</a><br></th>"; ?>[/tr] Flwwwwwwww nada! Compartilhar este post Link para o post Compartilhar em outros sites
karkara 0 Denunciar post Postado Agosto 22, 2004 Tenta assim: PHP [/tr][tr]<?php$conexao = mysql_connect("localhost","root"); $db = mysql_select_db("internaltas"); $sql = "SELECT * FROM internaltas ORDER BY id DESC"; $resultado = mysql_query($sql) or die ("Não foi possível realizar a consulta ao banco de dados"); while ($linha=mysql_fetch_array($resultado)) { $id = $linha["id"]; $nome = $linha["nome"]; echo "<th width=15>$linha['id']<br></th>"; echo "<th width=295>$linha['nome']<br></th>"; echo "<th width=50><a href=\"excluir.php?id=$linha['id'] \">Excluir</a><br></th>"; ?>[/tr] Flwwwwwwww nada! Apareceu o seguinte erro: Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in Referente a linha: echo "<th width=15>$linha['id']<br></th>"; Compartilhar este post Link para o post Compartilhar em outros sites
michelsp 0 Denunciar post Postado Agosto 22, 2004 Coloca desta forma: PHP [/tr][tr]".$linha['nome']."[/tr] Compartilhar este post Link para o post Compartilhar em outros sites
karkara 0 Denunciar post Postado Agosto 22, 2004 Coloca desta forma: PHP [/tr][tr]".$linha['nome']."[/tr] VALEU!!!!!!!! agora funcionou!!! Compartilhar este post Link para o post Compartilhar em outros sites
michelsp 0 Denunciar post Postado Agosto 22, 2004 Ótimo!!!! :rolleyes: http://forum.imasters.com.br/public/style_emoticons/default/clap.gif Compartilhar este post Link para o post Compartilhar em outros sites