Cita: <form>
<select name="valor" id="valor" multiple SIZE="20">
<option> Valores</option>
</select></form>
<html>
<p>
<form>
<select name="productos" id="productos" MULTIPLE SIZE="20" onchange="valor">
<option>Seleccione los productos que desea</option>
<?php
include("include/conexion.php");
$conn = conectar();
$consulta="SELECT * FROM productos ORDER BY ID";
$result = mysql_query($consulta,$conn);
while ($row = mysql_fetch_row($result))
{
?>
<option value="<?php echo $row[0]?>" ><?php echo $row[2]?>, <?php echo $row[0]?>, <?php echo $row[1]?> </option>
<?php
}
desconectar($conexion);
?> <P>
</select>
<INPUT TYPE="submit" VALUE="Enviar datos">
</form>
</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</html>
tengo esto asi pero el boton no aparece si lo pongo debajo de ese select :S