I'm pretty good with php, but my MySQL skills are still lacking.
I have this script, but don't know how to make a form with it, and don't know how to do a couple other things (mentioned after script):
insert into user (UserName,Password,key,mobi) values ($UserName,$pass,$key,900000000)
Problem is, the password needs to be MD5, and that MD5 password must be in ALL UPPERCASE.
So could someone please give me a very basic code for doing this, including the form part? I appreciate any help, since I'm still lost when it comes to forms and dropping info into tables... Thanks alot! :)
strtoupper(md5($password));? – Madara Uchiha Sep 26 '12 at 17:36strtoupper(hash($pw))is fine, I thought you meanthash(strtoupper($pw))– Jordan Arseno Sep 26 '12 at 17:46