Question
How to omit the last comma
In a repeat region I have a comma separated list of email
recipients:
<?php do { ?>
<?php echo $row_rsEmailbcc['email']; ?>,
<?php } while ($row_rsEmailbcc = mysql_fetch_assoc($rsEmailbcc)); ?>
What should I do to omit the last comma which is displayed at the end of
the select?
Leolux
<?php do { ?>
<?php echo $row_rsEmailbcc['email']; ?>,
<?php } while ($row_rsEmailbcc = mysql_fetch_assoc($rsEmailbcc)); ?>
What should I do to omit the last comma which is displayed at the end of
the select?
Leolux