Hey all.

Having a wee bit o' trouble with a simple md5 script:

  for ($x=1 ; $x <62 ; $x++) {

      $mypass = "sports" . $x;
      $mypass = md5($mypass);

      dbConnect("UPDATE user_login SET password = '$mypass' WHERE school_id
= $x");

  }

For some reason, when I attempt to login with my md5'd user supplied
password I get no match.  Bizarre, haven't had this problem
before...........

Any help always appreciated

--Noah

--




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to