, ben bir form var ve o birden fazla öğe varsa ben ilk Öğe göndermek için kullanıcı yok ve o Ağın ve Ağın ben o sahip tüm öğeleri eklemek için ilk andan itibaren bunu istiyorum çünkü ben aynı alanları repeate bu yüzden birden fazla kez aynı Gerekli alanlar koymak.
<form>
<select name="items[]">
<option value="clothes">Clothes</option>
<option value="shoes">Shoes</option>
</select>
<input type="text" name="color[]" />
<select name="items[]">
<option value="clothes">Clothes</option>
<option value="shoes">Shoes</option>
</select>
<input type="text" name="color[]" />
</form>
name = "color []" Ben ile sonuç alabilirsiniz: ve ben sadece böyle bir alanı almak için biliyorum:
while(list($key,$value) = each($_POST['color'])){
if(!empty($value)){
echo $_POST['color'][$key];
echo "<br />" ;
}}
ama şimdi ben tüm değerleri almak "öğeleri ve renk seçmek" istiyor
i made this code here and I got all the results But it is not linked to each other!!!
like this: clothes shoes red blue
i want it like this: clothes-red shoes-blue
Bu i yaptı kod Ama ben memnun değilim
while(list($key,$value) = each($_POST['input'])){
if(!empty($value)){
echo $_POST['input'][$key];
echo "<br />" ;
}}
while(list($key,$value) = each($_POST['items'])){
if(!empty($value)){
echo $_POST['items'][$key];
echo "<br />" ;
}}
Herkes bana lütfen yardımcı olabilir :)
, teşekkür ederim