I was looking for simple hashing with passwords in the login form. I came across this http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/ . here he hashes the password, creates salt, and then hashes the password and salt again. I create the login form myself, this is abc.php
<form name="register" action="register.php" method="post">
Username: <input type="text" name="username" maxlength="30" />
Password: <input type="password" name="pass1" />
Password Again: <input type="password" name="pass2" />
<input type="submit" value="Register" />
</form>
after sending goes register.php, it has
$u=$_REQUEST['username'];
$p=$_REQUEST['pass1'];
and then sends $ u and the 'final password' to the database.
Question: my question is to submit the form from abc.php, does the password go like text?
, , - , , , , $_REQUEST, , , , , -.