Re: [PHP] Matching irregular cases

2001-01-17 Thread Toby Butzon
> displayed, I want to change the search query so it stands out in the result > list. I'm just using... > ereg_replace($search_query, "$search_query", $row[6]); > ...at the moment, but it wont match results where the case doesn't match. Try eregi_replace... php.net/eregi_replace --Toby -- PH

RE: [PHP] Matching irregular cases

2001-01-17 Thread jalist
(/me smacks head) thanks, completely forgot about that. Steve -Original Message- From: Robert Collins [mailto:[EMAIL PROTECTED]] Sent: 17 January 2001 15:57 To: 'jalist'; [EMAIL PROTECTED] Subject: RE: [PHP] Matching irregular cases Steve, Try the ereg_replace()somthing

RE: [PHP] Matching irregular cases

2001-01-17 Thread Robert Collins
y, January 17, 2001 8:47 AM To: [EMAIL PROTECTED] Subject: [PHP] Matching irregular cases I think this'll be an easy one for you fellas... I'm writing a search function for my site. The code to search the mysql db's are in place and working but here's the problem. For any matc

[PHP] Matching irregular cases

2001-01-17 Thread jalist
I think this'll be an easy one for you fellas... I'm writing a search function for my site. The code to search the mysql db's are in place and working but here's the problem. For any matches that are displayed, I want to change the search query so it stands out in the result list. I'm just using..