ich hab´s teilweise:
$result = mysql_query("SELECT * FROM emails;");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
printf ("%s, ", $row["adress"]);
}
nur wie kann ich das in eine Variable speichern? geht das dann mit implode()?