Re: Limiting words...

2003-05-31 Thread Becoming Digital
; <[EMAIL PROTECTED]>; "MySQL List" <[EMAIL PROTECTED]> Sent: Friday, 30 May, 2003 09:59 Subject: Re: Limiting words... Edward, Thanks, this worked with the field, however it only works in the shell. I am trying to make it work in a PHP page. Here is my code, am I doin

Re: Limiting words...

2003-05-31 Thread Steve Marquez
> Becoming Digital > www.becomingdigital.com > > > - Original Message - > From: "Adam Clauss" <[EMAIL PROTECTED]> > To: "'Steve Marquez'" <[EMAIL PROTECTED]>; "'MySQL List'" > <[EMAIL PROTECTED]> > Sent: W

Re: Limiting words...

2003-05-30 Thread Becoming Digital
List'" <[EMAIL PROTECTED]> Sent: Wednesday, 28 May, 2003 22:07 Subject: RE: Limiting words... Maybe this: SUBSTRING_INDEX(str,delim,count) Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final de

RE: Limiting words...

2003-05-29 Thread Adam Clauss
Maybe this: SUBSTRING_INDEX(str,delim,count) Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final d