rom: Chris Zampese [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 25, 2002 6:02 PM
To: [EMAIL PROTECTED]
Subject: matching regardless of case
I have written a basic search engine, but can not find how to match the
users input regardless of case.
#$keyword comes from html form input
whi
add i like /$keyword/i
Wags ;)
-Original Message-
From: Chris Zampese [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 25, 2002 14:02
To: [EMAIL PROTECTED]
Subject: matching regardless of case
I have written a basic search engine, but can not find how to match the
users input
I have written a basic search engine, but can not find how to match the
users input regardless of case.
#$keyword comes from html form input
while ()
{
if (/$keyword/)
{
#do some things here
}
}
Any help is always appreciated,
many thanks,
Chris.