Re: [PHP-WIN] Windows binaries

2010-04-07 Thread Ferenc Kovacs
On Thu, Apr 8, 2010 at 6:34 AM, Todd Oberly wrote: > -Original Message- > >From: Pierre Joye > >Sent: Apr 5, 2010 6:08 AM > >To: Todd Oberly > >Cc: php-windows@lists.php.net > >Subject: Re: [PHP-WIN] Windows binaries > > > >On Mon, Apr 5, 2010 at 6:27 AM, Todd Oberly > wrote: > > > >>

RE: [PHP-WIN] Windows binaries

2010-04-07 Thread Venkat Raman Don
Hi, I am part of IIS FAstCGI development team. Can you give me details about error messages. Write a 1:1 mail to me. Thanks, Don. -Original Message- From: Todd Oberly [mailto:taobe...@mindspring.com] Sent: Wednesday, April 07, 2010 9:35 PM To: Pierre Joye Cc: php-windows@lists.php.net

Re: [PHP-WIN] Windows binaries

2010-04-07 Thread Todd Oberly
-Original Message- >From: Pierre Joye >Sent: Apr 5, 2010 6:08 AM >To: Todd Oberly >Cc: php-windows@lists.php.net >Subject: Re: [PHP-WIN] Windows binaries > >On Mon, Apr 5, 2010 at 6:27 AM, Todd Oberly wrote: > >> I've heard of FastCGI, but never used it before.  If I want to get the >>

Re: [PHP-WIN] Changing a column to proper case

2010-04-07 Thread Ferenc Kovacs
UPDATE species SET species_name = CONCAT( UCASE(LEFT(species_name, 1)), RIGHT(species_name, LENGTH(species_name)-1) ); Should work, but didn't tested. Tyrael On Wed, Apr 7, 2010 at 8:12 AM, Bill Mudry wrote: > Tyrael also suggested that and it worked! :-) . > That sure beats manually goi