Re: [PHP] ignoring case

2003-11-12 Thread Adam Williams
Hi, I finally found it in my notes, it was sql_regcase() Rolf Brusletto wrote: Adam Williams wrote: Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a ? I don't remember it off hand and can't find it in the function list on php.net.

Re: [PHP] ignoring case

2003-11-12 Thread Marek Kilimajer
It might be strtolower and strtoupper, but they do not make string case insensitive, functions can be CI, not strings. Adam Williams wrote: Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a ? I don't remember it off hand and can't fi

Re: [PHP] ignoring case

2003-11-12 Thread Rolf Brusletto
Adam Williams wrote: Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a ? I don't remember it off hand and can't find it in the function list on php.net. Basically it changes the text in the string from a character to [a-Z] for each c

[PHP] ignoring case

2003-11-12 Thread Adam Williams
Hi, does anyone happen to know off hand the function that will ignore case for data inputted via text from a ? I don't remember it off hand and can't find it in the function list on php.net. Basically it changes the text in the string from a character to [a-Z] for each character. I know it