EnsignPulver
IS-IT--Management
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 add a comma after the last one!"
The object of my script is to provide the contents of my mail field so that people can copy and paste all of the group's email addies into their mail program.
Thanks for any guidance!! I'm stuck.
ENS Pulver
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 add a comma after the last one!"
The object of my script is to provide the contents of my mail field so that people can copy and paste all of the group's email addies into their mail program.
Thanks for any guidance!! I'm stuck.
ENS Pulver