View Single Post
  #4 (permalink)  
Old 10-13-03, 04:21 AM
Snake Shift Snake Shift is offline
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.
Reply With Quote