Jump to content
Fórum Script Brasil
  • 0

Tables


msb_gj

Question

E aê pessoal Bom Dia para todos!

galera tenho estudado muito mas ainda tem coisas que não consigo fazer sem ajuda de você's :D

Por isso estou aqui mais uma vez para pedir uma luz aos meus mestres.

estou querendo colocar as tabelas dentro de um combo e deste combo abrir a tabela selecionada, só que aparece isso "Resource id#4" o que é isso??

<?

include'conn.php';

$banco=mysql_select_db($bd,$dbh);

$sql = mysql_list_tables($bd,$dbh);

?>

<form action="" method="get">

<select name="select">

<?php

while($user=mysql_fetch_array($sql))

{

?>

<option><?php echo $user; ?></option>

<?php

};

?>

</select>

</form>

Valeu

Obrigado mais uma vez!

MSB_GJ

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

É o seguinte:

<?

include'conn.php';

$banco=mysql_select_db($bd,$dbh);

$sql = mysql_query("select * from sua_tabela",$dbh);

?>

<form action="" method="get">

<select name="select">

<?php

while($res=mysql_fetch_array($sql))

{

?>

<option><?php echo $res["user"]; ?></option>

<?php

};

?>

</select>

</form>

você precisa gerar a consulta através de mysql_query()

mysql_fetch_array() retorna um array com os campos do registro corrente da consulta

É isso aí!!1

:lol:

Link to comment
Share on other sites

  • 0

Luciano

Então.....

não consegui entender :(

<?

include'conn.php';

$banco=mysql_select_db($bd,$dbh);

//

//

$sql = mysql_query("select * from sua_tabela",$dbh);// aqui eu não teria que colocar a tabela??

//

//

?>

<form action="" method="get">

<select name="select">

<?php

while($res=mysql_fetch_array($sql))

{

?>

<option><?php echo $res["user"]; ?></option>

<?php

};

?>

</select>

</form>

$sql = mysql_query("select * from sua_tabela",$dbh);// aqui eu não teria que colocar a tabela??

como eu devo tratar, pois se aqui deve conter o nome da tabela se eu gostaria que fosse a relação das tabelas do bd...

Obrigado

MSB_GJ

Link to comment
Share on other sites

  • 0

há!!!

chegamos onde eu queria... :D

Ai é que está, eu queria listar as tabelas desta forma ou vou listar o campo que estiver aqui não é??

<option><?php echo $res["user"]; ?></option>

no caso acima o campo user de uma tabela citada lá em cima não é??

Obrigado

MSB_GJ

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
      651.8k
×
×
  • Create New...