Tamam, burada yapmaya çalıştığım buydu. Ben en son mesaj için bir MySQL sorgusu çalıştırıyorum. Döndürülen satırların her biri için, ben o dizide bu ID içinde, ben satırlardan daha fazla veri eklemek gerekiyor, bir dizi satır kimliğini itmek gerekir. Bir çok-boyutlu bir dizi.
İşte benim kod şimdiye kadar var.
$query = "SELECT * FROM posts ORDER BY id DESC LIMIT 10";
$result = mysql_query($query);
while($row = mysql_fetch_array($result)){
$id = $row["id"];
$post_title = $row["title"];
$post_text = $row["text"];
$post_tags = $row["tags"];
$post_category = $row["category"];
$post_date = $row["date"];
}
Gördüğünüz gibi ben henüz dizilerle şey yapmadım. İşte aradığım ideal bir yapı karıştı konum sadece örtmek, bulunuyor.
The master array I guess you could call it. We'll just call this array $posts. Within this array, I have one array for each row returned in my MySQL query. Within those arrays there is the $post_title, $post_text, etc.
Bunu nasıl yaparsınız? Kafam karıştı .. bir örnek gerçekten takdir.
-Dylan