
LeoF
Novice
Oct 13, 2000, 10:43 AM
Post #2 of 2
(184 views)
|
|
Re: EASY - case sensitive and punctuation
[In reply to]
|
Can't Post
|
|
Hi Zeke_D, To avoid case sentitivity change: <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> if ($xuser eq $user) {</pre><HR></BLOCKQUOTE> to: <BLOCKQUOTE><font size="1" face="Arial,Helvetica,sans serif">code:</font><HR> if (lc($xuser) eq lc($user)) {</pre><HR></BLOCKQUOTE> Hope that helps Be Well
|