
darian
Deleted
Mar 8, 2000, 10:32 AM
Post #3 of 3
(490 views)
|
|
Re: Upper to lower case letters
[In reply to]
|
Can't Post
|
|
If you want foo = Foo = FOO then you need to write it like so: <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> if ($ENV{'HTTP_REFERER'} ne "" && $ENV{'HTTP_REFERER'} !~ /$domain/i)</pre><HR></BLOCKQUOTE> Adding the "i" at the end of the regex you tell it to not care about case. So now foo = Foo = FOO and so on. [This message has been edited by darian (edited 03-08-2000).]
|