notepad Posted April 17, 2007 Share Posted April 17, 2007 Hey, I am working on a users script using MySQL and PHP. I am pretty good with PHP, but am very new with MySQL... I have the passwords (among other things) set to a max length. I would like to set the max length of characters to the same number in the database. From what I understand, if I set a row to "varchar (30)", that row will record a maximum of 30 characters. Is this correct? ~ Brandon Quote Link to comment https://forums.phpfreaks.com/topic/47339-solved-noobie-mysql-question/ Share on other sites More sharing options...
freakstyle Posted April 17, 2007 Share Posted April 17, 2007 yep, your correct. varchar 30 means the field will only hold 30 characters. for passwords, you may want to set the field to varchar 32, and then encrypt them... ex: $pw = md5($_POST['password']); that way no one knows what it is. enjoy Quote Link to comment https://forums.phpfreaks.com/topic/47339-solved-noobie-mysql-question/#findComment-230992 Share on other sites More sharing options...
notepad Posted April 17, 2007 Author Share Posted April 17, 2007 Hey freakstyle, Thanks for the info man... I have been searching all over Google trying to figure this out, and never found anything lol... btw, another good thing to do to your passwords is to salt them. That way no one can figure them out unless they have your salt key. ~ Notepad Quote Link to comment https://forums.phpfreaks.com/topic/47339-solved-noobie-mysql-question/#findComment-230996 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.