php açılan değeri ile sorun

0 Cevap

i veritabanı tablo yani dinamik doldurulan bir damla aşağı liste var

<form method=post action='dropdown.php'>
<?php
$query="SELECT DISTINCT style FROM style";
$result = mysql_query ($query);
echo "<select name=style[] size=4 value='' multiple>Choose Style</option>";
         while($nt=mysql_fetch_array($result)){//Array or records stored in $nt
          echo "<option value=$nt[style]>$nt[style]</option>";
           }
         echo "</select>";// Closing of list box
          mysql_close($conn);?>
<input type=submit> </form>

I açılır listeden (mikro açmıştı) seçerseniz uzay yani gösterilmez sonra ben başka bir sayfaya açılan değerini form göndermek zaman o sadece Micro gösterecektir. Benim php kodu

$style=$_POST['style'];
if( is_array($style)){
while (list ($key, $val) = each ($style)) {
echo $val."<br/>";
}
}

0 Cevap