Implode () fonksiyonu normal dizilerde çalışır, ama (ben de mysql_fetch_row denedim) mysql_fetch_array ile oluşturulan diziler üzerinde çalışmıyor
Bunları nasıl işe alabilirim?
Yukarıda tanımlandığı gibidir:
$friends = mysql_query("SELECT * FROM friend
WHERE u1='$userinfo[username]' OR u2='$userinfo[username]' ");
Ve daha aşağı:
$friendsrow = mysql_fetch_array($friends);
$friendsrow = join(",",$friendsrow);
$friendnotes = mysql_query("SELECT nid,user,subject,message FROM friendnote WHERE user IN ($friendsrow) ORDER BY timestamp ASC LIMIT 0,5");
(Durumda sizin merak, o bir topluluk sitesi için)