Bir printf bir işlev () (açılması)

0 Cevap php

I have a while() function that loops a row of data within my table.
Now What I need to to have a dropdown within 1 particular column of every row.
This dropdown is executed by utilizing a loop as well.

Yani burada açılan oluşturur fonksiyonudur:

function createDropdown($total)  
{  
    $i = 1;  
    echo "<select>";  
    while($i <= $total)  
    {  
        echo "<option value = '$i' id =* '$i'>$i</option>";  
        $i++;  
    }  
    echo "</select>";  
}

Tablosunu yazdırmak için:

while($row1 = mysql_fetch_array($result1))  
{  
    print("<tr>");
    printf("<td>%s %s</td>", $row1["fname"], $row1["lname"]`);  
    printf("<td>".createDropdown($count)."</td>");  
    printf("<td colspan = '2'>%s</td>",$count);  
    printf("<td><span id = 'attendance'>111</span></td>");  
    print("</tr>");  
}

So now I have many dropdowns of which gives me what I want.
The problem is, I need to post all of these in the next page. Which means the ID of each dropdown has to be somehow be put into an array.

Neyse ben bu yapabilirim? Şimdiden teşekkürler.

Şeyleri daha net yapmak için, <select> herhangi bir kimliği var, ama sorun olabilir, her açılan aynı kimliği olurdu. Kullanırken $_POST, ben sadece hepsi, son açılan değil değer kavuşacaktır. Ben diziye biraz zaman sorunları vardı dropdowns kendisi var.

0 Cevap