PHP Verification two times the password of the same how to deal with the "0" solution

Source: Internet
Author: User
PHP Verification two times the password is consistent how to handle "0"?
Ask: very simple verification two times the password is consistent, encountered strange problem: if the first time input "00000", the second input "000", the program is considered consistent, that is, when the user entered the password is 0 o'clock, no matter how many 0, can pass.

Code:

Define an administrator variable, such as a committed value, or the default is Admin
$admname = (isset ($_post[' admname '))? Trim ($_post[' admname '): ' admin ';

if (Isset ($_post[' submitted '))
{
$admpass 1 = (isset ($_post[' Admpass1 '))? Trim ($_post[' admpass1 '): ";
$admpass 2 = (isset ($_post[' admpass2 '))? Trim ($_post[' admpass2 '): ";

if ($admname! = "&& $admpass 1! =" && ($admpass 1 = = $admpass 2))
{
...... ......

------Solution--------------------
try = = =
------Solution--------------------
Compares the MD5 encryption results.
------Solution--------------------
It's probably just a comparison of values, explicitly converted to string types.
------Solution--------------------
Explore

Thank you very much for the reply from upstairs! The use of = = = solved.

But just a simple string comparison, why do I have to limit the data type? Two of them are strings, uh.
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.