一生懸命考えているのですが、なかなか答えが出ません...
たとえば、電子メールが送信されたすべての人を要約すると、カンマで区切りたいのですが、ドットで終わります!
たとえば、このコード:
$emailnotificationmessage = "<p id='notification'>An e-mail notification has been sent to: ";
while( $record=mysql_fetch_array($checkwhotosendresult) )
{
$mailto=$record['email'];
$mail_ontv = $mailto;
if (mail($mail_ontv, $onderwerp, $inhoud_mail, $headers))
{
$emailnotificationmessage .= "$mail_ontv, ";
}
else
{
$emailnotificationmessage = "<p id='notification'>Error. E-mail could not be sent to the receipent.";
}
}
$emailnotificationmessage .= "</p>";
戻り値:
An e-mail notification has been sent to: mail@mail.com, mail2@mail.com, mail3@mail.com,
では、言語を少し正しく保つために、どうすればドットで終わることができますか...?
編集
これについて新しい質問を投稿したくありません。and
最後の2
電子メールの間にどのように配置すればよいか疑問に思っているだけです。