Would this idea work, do something like:
$password = $_POST['password'];
$password = md5($password);
And then inserted $password into the database would that be secure? Also would it be secure enough when the user posts the form to that page, wouldn't it be oepn to see until it gets to the page and gets encrypted?
If you just inserted $password into the db would you use something like VARCHAR as the field type or would you have to use something else?
Thanks for the continued help.