Ben bir JSON dosyasını ayrıştırma sonra PHP kullanarak bir dinamik html tablo oluşturmak gerekir.
I need this column structure for my table; Name | Status | Age | Count | Progress | Bad
Nasıl JSON dosyasından çözümlenmiş her 'rekor' (i sekme ayrılmış dize oluşturabilir) için yeni bir satır oluşturabilirsiniz. Ilave bir zorluk
bazı kayıtları 'tek sütun' Adı 've diğerleri için verileri içerir olduğunu tüm sütunlar için.
So my question is how to add a row dynamically to the table and fill the right column ?
(The key form the JSON file is the column header)
json biçimi örneği:
{
"John": {"status":"Wait" },
"Jennifer": {"status":"Active" },
"James": {"status":"Active","age":56,"count":10,"progress":0.0029857,"bad":0}
}