Jump to content

Recommended Posts

Posted

Olá mais uma vez galera,

Quero na input name="Nome" apareca o nome da ID selecionado na select name="id"

eu fiz assim mas quando seleciono outro id o nome não muda.

<?php
include_once ("segura.php");
protPagina ();
?>
<!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>Documento sem título</title>
</head>
<select name="id" onkeypress="return handleEnter(this, event)" >

<?php
   $sql_lista_clientes = mysql_query("SELECT * FROM tb_clientes ");
   while ($resultado_clientes = mysql_fetch_array($sql_lista_clientes, MYSQL_ASSOC)){
       $id_logado = $resultado_clientes ['id'];
       $nome = $resultado_clientes ['nome'];

?>
	 <option><?php echo $id_logado ?>
<?php
   }
?>
 </option> </select>

<input name="Nome" type="text" maxlength="25" value="<?php echo $nome ?>" />
<body>
</body>
</html>
Posted

- ou crias um array em javascript que será lido após a selecção do ID

- ou usas AJAX para depois da selecção, é feito um pedido ao servidor do texto a ser apresentado

- ou ainda existe uma solução muito simplista que é o uso de atributos não standard no option onde guardas o texto, ao seleccionar o id, esse texto será copiado para o input

IRC : sim, é algo que ainda existe >> #p@p
  • 4 weeks later...
Posted

Olá mais uma vez galera,

Quero na input name="Nome" apareca o nome da ID selecionado na select name="id"

eu fiz assim mas quando seleciono outro id o nome não muda.

<?php
include_once ("segura.php");
protPagina ();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22>
<html xmlns="http://www.w3.org/1999/xhtml%22>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sem título</title>
</head>
<select name="id" onkeypress="return handleEnter(this, event)" >

<?php
   $sql_lista_clientes = mysql_query("SELECT * FROM tb_clientes ");
   while ($resultado_clientes = mysql_fetch_array($sql_lista_clientes, MYSQL_ASSOC)){
       $id_logado = $resultado_clientes ['id'];
       $nome = $resultado_clientes ['nome'];

?>
	 <option><?php echo $id_logado ?>
<?php
   }
?>
 </option> </select>

<input name="Nome" type="text" maxlength="25" value="<?php echo $nome ?>" />
<body>
</body>
</html>

Este código

<select name="id" onkeypress="return handleEnter(this, event)" >
<?php
   $sql_lista_clientes = mysql_query("SELECT * FROM tb_clientes ");
   while ($resultado_clientes = mysql_fetch_array($sql_lista_clientes, MYSQL_ASSOC)){
       $id_logado = $resultado_clientes ['id'];
       $nome = $resultado_clientes ['nome'];
?>
	 <option><?php echo $id_logado ?>
<?php
   }
?>
 </option> </select>
<input name="Nome" type="text" maxlength="25" value="<?php echo $nome ?>" />

devia estar dentro da tag BODY

Melhores Cumprimentos,

Ivo Barbosa

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.