Her dosya için açıklama ile çoklu dosya yükleme

0 Cevap php
<input type="file" name="file[]" />
<input type="text" name="description[]" />

<input type="file" name="file[]" />
<input type="text" name="description[]" />

<input type="file" name="file[]" />
<input type="text" name="description[]" />

and should the name of them be the same name bacause actully i have one is appear to the end user and the others it clones when the end user clike on " + button" so the others are Cloned with the same name and every thing

so how can I get the info from the form like this: File#1 - description File#2 - description File#2 - description

also i don't have just the description below each file i have select menu and and other.

ve ben her dosya için tüm bu bilgileri almak istiyorum

Ben girdi dosyası için bu var:

while(list($key,$value) = each($_FILES[image][name])){

if(!empty($value)){
$filename = $value;

// Result here

}}

I HERE önce sordum ama çözüm ben böyle [0] [tip] ürün 1 [tür] ad öğeleri değiştirmek gerekir ve daha önce söylediğim gibi ben adını değiştirmek gerekmiyor

Bu diğer alanlar için:

<select name="items[0][type]"> 
<input name="items[0][color]">  
<select name="items[1][type]"> 
<input name="items[1][color]"> 

foreach ($_POST['items'] as $item) { 
    $type = $item['type']; 
    $color = $item['color']; 
}

ama dediğim gibi bu değil yararlı adı birleşik değil çünkü

Ben her dosya için formu tüm bilgi kapmak istiyorum

its so important to me to know how this work can anybody help me

teşekkür ederim

0 Cevap