[PHP] How to check aBc different from abc ?

2001-05-15 Thread Bass¨Ð¦õªv
thx ^_^ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] How to check aBc different from abc ?

2001-05-15 Thread Steve
$st1 = abc; $st2 = abc; strcmp($st1, $st2);// 0 if equal, -1 or 1 if not equal (depending on which one is larger) Bass¨Ð¦õªv [EMAIL PROTECTED] wrote in message 9ds76j$9mv$[EMAIL PROTECTED]">news:9ds76j$9mv$[EMAIL PROTECTED]... thx ^_^ -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] How to check aBc different from abc ?

2001-05-15 Thread scott [gts]
this also works: $st1 = abc; $st2 = abc; if ($st1 != $st2) { die(Death); } -Original Message- From: Steve [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 6:39 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] How to check aBc different from abc ? $st1 = abc; $st2 = abc