How can i have three or more select tags with same names(as in my program, the select tags are being generated dynamically), and select independently what option was selected. I have a loop, where my php reads a sql table, and for each row, it creats a select tag and a button with it.
<select name="vote">
<option value="1">1</vote>
<option value="2">2</vote>
<option value="3">3</vote>
</select>
<input type="button" onclick="vote()">
Yani benim sql tablo 3 satır olduğunu varsayalım, yani butonları ile 3 seçeneğini etiketler oluşturulmuş olacaktır.
Şimdi soru nasıl ben select tag ne seçenek seleted var görebilirsiniz olduğunu?
Herkes bana bu konuda yardımcı olabilir.
Zeeshan