pongo a dispocicion el ejemplo ya que al seleccionar el item del combo. muestra la informacion en una sola caja todo. la idea es que lo muestre en en sus respectivas cajas y no me ha funcionado los cambios que he realizado
Código PHP:
<?php
include("Connections/conexlocal.php");
$sql="SELECT * FROM producto ";
$result=mysql_query($sql);
?>
<!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=iso-8859-1" />
<title>test</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<?php
if (mysql_num_rows($result) >0) {
?>
<select name="selecprod" id="selecprod" onchange="otrosdatos.value=this.options[this.selectedIndex].getAttribute('descripcion')+' - '+this.options[this.selectedIndex].getAttribute('cantidad')+' - '+this.options[this.selectedIndex].getAttribute('precio')">
<option value="" descripcion="" cantidad="" precio="">seleccionar</option>
<?php
while ($row = mysql_fetch_assoc($result)){
?>
<option value="<?php echo $row['CODIGO_PRODUCTO'] ?>" selected="selected" descripcion="<?php echo $row['DESCRIPCION_PRODUCTO'] ?>" cantidad="<?php echo $row['CANTIDAD_PRODUCTO'] ?>" precio="<?php echo $row['PRECIO_PRODUCTO'] ?>"><?php echo $row['NOMBRE_PRODUCTO'] ?></option>
<?php
}
?>
</select>
<input name="otrosdatos" type="text" id="otrosdatos" value="" size="50" maxlength="50" disabled readonly>
<input name="catidad" type="text" id="catidad" value="" size="10" maxlength="10" disabled readonly>
<input name="precio" type="text" id="precio" value="" size="10" maxlength="10" disabled readonly>
</form>
<?php
}
?>
</body>
</html>
gracias desde ya