我有一個登錄表單,將提交id和密碼到一個php文件,然後將檢查該數據和SQL數據庫中的數據。我如何加密外發表單數據,以確保沒有人能夠看到它,直到它到達目的地? 登錄表單代碼如何加密表單數據?
<html>
<head>
<title>
Login page
</title>
</head>
<body>
<form name="login" action="fetchalldata.php" method="post">
Username : <input type="text" name="userid"/>
Password : <input type="password" name="pswrd"/>
<input type="button" name="submit" value="Login"/>
</body>
</html>
將prehashing數據庫上的密碼和 發送哈希密碼更有效?
[使用SSL](http://en.wikipedia.org/wiki/Secure_Sockets_Layer) – PeeHaa
https是要走的路 – 2012-09-06 00:31:53
嗯,我相信GoDaddy提供便宜的SSL證書。 – Tarik