Sorry, my mind has gone completely blank here.
What I WANT to do is have my PHP download a list of e-mail addresses from a table named maillist and produce an array called $recipient with all of the values found separated by a comma.
This is the query I am using:
Code: Select all
$query = "SELECT * FROM maillist";
$result = mysql_query($query)
or die ("Couldn't execute query.");
while ($row = mysql_fetch_assoc($result))
{extract ($row);
$recipient = "$email,"};Numerous e-mail address all separated by a comma.
Any ideas?
Thank you SO much in advance.