Re: [PHP] Re: Appending to an Array

2007-06-16 Thread Keith Spiller
Awesome Vlad. You fixed it with your second example perfectly! Thank you so much. Keith - Original Message - From: "Vlad Vlasceanu" <[EMAIL PROTECTED]> To: Sent: Saturday, June 16, 2007 10:43 PM Subject: [PHP] Re: Appending to an Array "." is the conca

[PHP] Re: Appending to an Array

2007-06-16 Thread Vlad Vlasceanu
"." is the concatenation operator, usually applies only to strings try: $days[] = array($this_day=>array("#","today-day")); or actually: $days[$this_day] = array("#","today-day"); since it looks like you're indexing based on the day Keith Spiller wrote: Hi Folks, RE: Appending to an Array