Jump to content

[SOLVED] Noobie MySQL Question


notepad

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/47339-solved-noobie-mysql-question/
Share on other sites

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

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.