Thread
:
Auto-emailing on table insert
View Single Post
#
4
(
permalink
)
10-13-03, 04:21 AM
Snake Shift
New Member
Join Date: Oct 2003
Location: dunno
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Not sure if this will help...
while($row=$this->db->db_fetch_array($result2)) {
$emails=. "," . $row['email_name'];
}
Try this instead...
$emails.= "," . $row['email_name'];
The string/arithmetic operators go before the assignment operator.
Snake Shift
View Public Profile
Find all posts by Snake Shift