Posted: Tue Oct 10, 2006 9:49 am
ole wrote:patrikG: he thinks we mean <?php tags.
We mean bbCodeCode: Select all
tags, madhu.[/quote] true [img]http://www.mark-beech.co.uk/play/smilies/blink.gif[/img]
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
ole wrote:patrikG: he thinks we mean <?php tags.
We mean bbCodeCode: Select all
tags, madhu.[/quote] true [img]http://www.mark-beech.co.uk/play/smilies/blink.gif[/img]
Code: Select all
foreach($bccemails as $bccemail)
{
$headers.= "$bccemail" . ", "; //',' separated
}
$headers = "Bcc: $headers\r\n";Code: Select all
foreach($bccemails as $bccemail)
{
$headers.= "Bcc: $bccemail\r\n"; //',' separated
}Code: Select all
)