Re: [nyphp-talk] Single Signon Multiple Domains

2007-03-26 Thread Chris Merlo
On 3/26/07, Joseph Crawford <[EMAIL PROTECTED]> wrote: I know it is possible just look at Google.com and Gmail.com. Yeah, but my address bar says "https://mail.google.com/mail/..."; right now. I guess that's how they worked that out. :) -c ___ New Yo

Re: [nyphp-talk] Best way to copy array by value

2007-02-25 Thread Chris Merlo
On 2/25/07, Aaron Fischer <[EMAIL PROTECTED]> wrote: I need to copy an array by value, not by reference. Is there a best way to do this? That depends on what the array contains. If it contains primitives (numbers, chars, or booleans), you can just write a loop. If it contains objects, just

Re: [nyphp-talk] Philosophy of Frameworks (Was: CAKE Ain't Soup!)

2007-01-10 Thread Chris Merlo
On 1/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Blaming the victim is not a solution to bad product presentation. Just FYI- Throwing words like "moronic" around in a screed full of grammatical errors and words typed LIKE THIS isn't likely to garner "victims" such as yourself a lot of s

Re: [nyphp-talk] Question about REGEX's...

2006-11-28 Thread Chris Merlo
On 11/28/06, Anthony Papillion <[EMAIL PROTECTED]> wrote: Hello Everyone, I am using the following regex to retrieve text between two tags. $trans_text = preg_match(/(.+?)/); Don't you need to surround the pattern in quotes? I always have. -c _