Potresti provare così:
Da così:
Codice PHP:
while ($row = mysql_fetch_array($result))
{echo "<a href=\"$_CONFIG[forum_path]profile.php?mode=viewprofile&u=$row[user_id]\" target=\"_blank\">$row[username] </a>";}
a così:
Codice PHP:
while ($row = mysql_fetch_array($result))
{
$nomechevuoi = "<a href=\"$_CONFIG[forum_path]profile.php?mode=viewprofile&u=$row[user_id]\" target=\"_blank\">$row[username] </a>";
}
$listautenti = implode(',', $nomechevuoi);
Poi fai un "echo $listautenti" dove vuoi che appaia...