I'm trying to write a search function, but it's performing the search case sensitive. I need to make it case insensitive. Any ideas on how to accomplish this? Thanks.
lol very easy, try to use strtolower and strtoupper functions to convert any case into lower or uper.. such as $abc= "UPPER"; you can compare if("upper"==strtolower($abc)) if will return true whether $abc is in upper or lower, no matter
Thanks mani. I just searched for a complete search script and scratched the one I was writing. But none-the-less thanks.
If you're using a mysql database then have the mysql server do all the work. http://iamcal.com/publish/articles/php/search/