Hello Friends,
I have the following little snippet:
$email=mysql_result($result,$i,"email");
echo "<b>$email,<br><hr><br>";
++$i;
}
?>
What I get is x@z.com, p@t.com,
What I need is x@z.com, p@t.com
I need to build a little logic to say "add commas between each email address, then don't...