Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Buscar Dados do Banco e exibí-los em tabelas


Jessé Augusto

Question

Boa noite a todos!

Sou novato em PHP e preciso da ajuda de vocês:

Estou tentando mostrar algumas informações do Banco de Dados (My Sql) em uma tabela, mas apenas são exibidas as variáveis definidas no código PHP, quando na verdade se deveria mostrar o conteúdo das mesmas, considerando que o mesmo vem do banco.

Segue o código para análise.

OBS.:No exemplo do código mandei exibir apenas duas informações.

<code>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Buscar filme.</title>

</head>

<body>

<?php

$servidor = localhost;

$usuario = "root";

$senha = "";

$banco = "locadora";

$conexao = mysql_connect($servidor ,$usuario,$senha) or die("Não foi possível realizar a conexão com o banco.");

#Seleciona o banco de dados, utilizando o conteúdo da variável $banco e utilizando a conexão $conexao

mysql_select_db($banco,$conexao);

?>

<?php

$resultado = mysql_query("SELECT * FROM filme;");

while($l = mysql_fetch_array($resultado))

{

$idfilme = $l["idfilme"];

$titulo = $l["titulo"];

echo'

<table width="200" border="1" cellspacing="1" align="center">

<tr>

<th colspan="2" scope="col">"Lista de filmes."</th>

</tr>

<tr>

<th width="93" scope="row"><div align="center">Código</div></th>

<td width="94"><div align="center"><strong>Título</strong></div></td>

</tr>

<tr>

<th scope="row">$idfilme</th>

<td>$titulo</td>

</tr>

</table>

';

}

?>

<div align="center">

<p>&nbsp;</p>

</div>

</body>

</html>

</code>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Troca:

echo'

<table width="200" border="1" cellspacing="1" align="center">
<tr>
<th colspan="2" scope="col">"Lista de filmes."</th>
</tr>


<tr>
<th width="93" scope="row"><div align="center">Código</div></th>
<td width="94"><div align="center"><strong>Título</strong></div></td>
</tr>
<tr>
<th scope="row">$idfilme</th>
<td>$titulo</td>
</tr>
</table>
';
Por:
echo'

<table width="200" border="1" cellspacing="1" align="center">
<tr>
<th colspan="2" scope="col">"Lista de filmes."</th>
</tr>


<tr>
<th width="93" scope="row"><div align="center">Código</div></th>
<td width="94"><div align="center"><strong>Título</strong></div></td>
</tr>
<tr>
<th scope="row">'.$idfilme.'</th>
<td>'.$titulo.'</td>
</tr>
</table>
';

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...